Employee Contract Expired
| Employee |
Contract Begin |
Contract End |
@foreach($employeeContractExpired as $employeeContract)
| {{ $employeeContract->employee->name }} |
{{ date('d F Y', strtotime($employeeContract->contract_begin)) }} |
{{ date('d F Y', strtotime($employeeContract->contract_end)) }} |
@endforeach
@if($employeeContractExpiredSoon->count() > 0)
Employee Contract Expired Soon
| Employee |
Contract Begin |
Contract End |
@foreach($employeeContractExpiredSoon as $employeeContract)
| {{ $employeeContract->employee->name }} |
{{ date('d F Y', strtotime($employeeContract->contract_begin)) }} |
{{ date('d F Y', strtotime($employeeContract->contract_end)) }} |
@endforeach
@endif
@stop