@extends('layout') @section('title', 'Apprenticeship/Employment Training Registration') @section('content')

Apprenticeship/Employment Training Registration

@if(!$ioas->isEmpty())

@foreach($ioas as $ioa) @endforeach
First Name Middle Last Name Street Address City State Zip Home Phone Cell Phone Email Gender SS # Ethnicity Date of Birth Veteran Disabled School Major/Program Workforce Industry Focus Job Target Special Skills Joining Reason Resume Present NDA Signed Work Authorization Monday Schedule Tuesday Schedule Wednesday Schedule Thursday Schedule Friday Schedule Saturday Schedule Starting Date Emergency Contact Emergency Relationship Emergency Street Address Emergency City Emergency State Emergency Zip Emergency Home Phone Emergency Cell Phone Emergency Email Signature Signature Date Print Name Application Date Actions
{{ $ioa->first_name }} {{ $ioa->middle }} {{ $ioa->last_name }} {{ $ioa->street_address }} {{ $ioa->city }} {{ $ioa->state }} {{ $ioa->zip }} {{ $ioa->home_phone }} {{ $ioa->cell_phone }} {{ $ioa->email }} {{ $ioa->gender }} {{ $ioa->ss_number }} {{ $ioa->ethnicity }} {{ date('Y-m-d', strtotime($ioa->dob)) }} {{ $ioa->veteran }} {{ $ioa->disabled }} {{ $ioa->school }} {{ $ioa->major_program }} {{ $ioa->industry_focus }} {{ $ioa->job_target }} {{ $ioa->special_skills }} {{ $ioa->joining_reason }} {{ (($ioa->resume == '') ? 0 : 1) }} {{ (($ioa->by_signature == '') ? 0 : 1) }} {{ $ioa->work_authorization }} {{ $ioa->monday_schedule }} {{ $ioa->tuesday_schedule }} {{ $ioa->wednesday_schedule }} {{ $ioa->thursday_schedule }} {{ $ioa->friday_schedule }} {{ $ioa->saturday_schedule }} {{ date('Y-m-d', strtotime($ioa->starting_date)) }} {{ $ioa->ec_contact }} {{ $ioa->ec_relationship }} {{ $ioa->ec_street_address }} {{ $ioa->ec_city }} {{ $ioa->ec_state }} {{ $ioa->ec_zip }} {{ $ioa->ec_home_phone }} {{ $ioa->ec_cell_phone }} {{ $ioa->ec_email }} {{ $ioa->signature }} {{ date('Y-m-d', strtotime($ioa->signature_date)) }} {{ $ioa->print_name }} {{ date('Y-m-d', strtotime($ioa->created_at)) }}
@csrf @method('DELETE') @if (in_array(Auth::user()->role, array('intern', 'admin'))) @endif
First Name Middle Last Name Street Address City State Zip Home Phone Cell Phone Email Gender SS # Ethnicity Date of Birth Veteran Disabled School Major/Program Workforce Industry Focus Job Target Special Skills Joining Reason Resume Present NDA Signed Work Authorization Monday Schedule Tuesday Schedule Wednesday Schedule Thursday Schedule Friday Schedule Saturday Schedule Starting Date Emergency Contact Emergency Relationship Emergency Street Address Emergency City Emergency State Emergency Zip Emergency Home Phone Emergency Cell Phone Emergency Email Signature Signature Date Print Name Application Date Actions
@else

No records

@endif
@endsection @section('js') @endsection()