@extends('admin.layouts.master') @section('title','applicants Page') @section('content')

Table

@foreach($applicants as $applicant) @endforeach {{$applicants->links()}}
# Created At Name Email Phone Job CV
{{$applicant->iteration}} {{$applicant->created_at->format('Y-m-d')}} {{$applicant->name}} {{$applicant->email}} {{$applicant->phone}} {{$applicant->career->title_en}} Open CV
@endsection