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