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

Resumes

@if(!$resumes->isEmpty()) @foreach($resumes as $resume) @endforeach
Name Application Date Actions
{{ $resume->first_name }} {{ $resume->last_name }} {{ date('Y-m-d', strtotime($resume->created_at)) }}
Name Application Date Actions
@else

No resumes

@endif
@endsection