Employers List
Generated on: {{ now()->format('Y-m-d H:i:s') }}
@foreach($headings as $heading)
{{ $heading }}
@endforeach
@foreach($employers as $employer)
@foreach($columns as $column) @if($column === 'status')
{{ $employer->active ? 'Active' : 'Inactive' }}
@else
{{ $employer->{$column} }}
@endif @endforeach
@endforeach