@extends('admin.layouts.app') @section('title', 'Careers') @section('content')

{{__('Careers')}}

{{__('All Career listing')}}

@if (Session::has('message'))
{{ Session::get('message') }}
@endif @if(!empty($career)) @php $i=1; @endphp @foreach($career as $datas) @php $i++; @endphp @endforeach @else @endif
{{__('ID')}} {{__('Full Name')}} {{__('Email')}} {{__('Job')}} {{__('Mobile')}} {{__('DOB')}} {{__('CV')}} {{__('Created At')}} {{__('Action')}}
{{$i}} {{$datas->first_name}} {{$datas->last_name}} {{$datas->email}} {{@$datas->job->$title}} {{$datas->mobile}} {{ dateConvertFormat($datas->dob) }} File {{ dateConvertFormat($datas->created_at) }} Delete
{{__('No record found')}}
@endsection