@extends('layout') @section('title', 'Employer Acceptance Agreement') @section('content')

Employer Acceptance Agreements

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

@foreach($eaas as $eaa) @endforeach
Name Registration Date Actions
{{ $eaa->first_name }} {{ $eaa->last_name }} {{ date('Y-m-d', strtotime($eaa->created_at)) }}
@csrf @method('DELETE') @if (in_array(Auth::user()->role, array('intern', 'admin'))) @endif
Name Registration Date Actions
@else Create @endif
@endsection @section('js') @endsection()