@if($employeeInfo) @else @endif
Employee Id Employee Name Job Status Status Terminate / Resign / Dismiss Date
{{ $employeeInfo->emp_id }} {{ $employeeInfo->emp_name_english }} {{ $employeeInfo->job_status }} {{ $employeeInfo->status }} {{ ($employeeInfo->terminate_resignation_date != null && $employeeInfo->terminate_resignation_date != '0000-00-00') ? date('d-m-Y', strtotime($employeeInfo->terminate_resignation_date)) : '' }}
No Result Found
@if($employeeInfo && $employeeInfo->status == 'Active' && $employeeInfo->job_status == 'Present')

This employee is already active

@endif @if($employeeInfo && $employeeInfo->terminate_resignation_date != null && $employeeInfo->terminate_resignation_date != '0000-00-00' && date('Y-m', strtotime($employeeInfo->terminate_resignation_date)) != date('Y-m'))

This employee terminate / resign / dismiss date is not in current month, year

@endif @if($employeeInfo && $employeeInfo->terminate_resignation_date != null && $employeeInfo->terminate_resignation_date != '0000-00-00' && date('Y-m', strtotime($employeeInfo->terminate_resignation_date)) == date('Y-m'))
@endif