@foreach ($acknowledgements as $acknowledgement) @if (!isset($acknowledgement->employees->get_employee)) @continue @endif {{ $loop->iteration }} {{ $acknowledgement->employees->get_employee->emp_code ?? '' }} {{ $acknowledgement->employees->get_employee->emp_name ?? '' }} {{ $acknowledgement->employees->get_employee->email ?? '' }} {{ $acknowledgement->employees->get_employee->fetch_department->name ?? '' }} {{ $acknowledgement->employees->get_employee->fetch_designation->name ?? '' }} @if(isset($acknowledgement->created_at)) {{ date('d-m-Y h:i A', strtotime($acknowledgement->created_at)) }} @endif @endforeach