@if($hrPolicies->isEmpty())
No Hr Policy found.
@else
| Effective Month |
Created At |
Created By |
Updated At |
Updated By |
Actions |
@foreach($hrPolicies as $hrPolicy)
| {{ date('F, Y', strtotime($hrPolicy->effective_date)) }} |
{{ $hrPolicy->created_at->format('d-m-Y') }} |
{{ $hrPolicy->creator->name }} |
{{ isset($hrPolicy->updated_by) ? $hrPolicy->updated_at->format('d-m-Y') : '-' }} |
{{ isset($hrPolicy->updated_by) ? $hrPolicy->editor->name : '-' }} |
|
@endforeach
@endif