@extends('portal.layouts.app', [ 'class' => '', 'elementActive' => '' ]) @section('title','Employers') @section('css') @endsection @section('content')

Employers

@can('create employer') @endcan
@foreach($data as $index => $item) @endforeach
# Name Phone Email National ID Added By Date Added
{{ $index + 1}} {{ $item->user?->name }} {{ $item->user->phone ?? 'N/A' }} {{ $item->user->email ?? 'N/A' }} {{ $item->user->national_id ?? 'N/A' }} {{ $item->addedBy->name ?? 'N/A' }} {{ date('d M, Y', strtotime($item->created_at)) }}
@endsection @section('script') @endsection