@extends('layouts.master', ['title' => 'Employees']) @section('contents')

Employee List

Note : Search applicable on Emp Id/Name/Work Order Number/Designation/Contact/Email (Official/ Personal )/Job Place/Qualification

@csrf
{{-- SVG images and Notifications --}}
@if (session()->has('success'))
@endif @if (session()->has('error'))
@endif
@forelse($employees as $employee) @empty @endempty
Emp Id Name Work Order No Designation Phone Email Date Of Joining Job Place Experience Highest Qualification Status Action Send Appointment Letter
@if ($employee->getBankDetail && $employee->getBankDetail->emp_sal_structure_status == 'completed') @endif
@if ( ($employee->getBankDetail && (empty($employee->getBankDetail->emp_sal_structure_status) || $employee->getBankDetail->emp_sal_structure_status == 'pending')) || empty($employee->getBankDetail)) Pending structure
@endif {{ $employee->emp_code }}
{{ $employee->emp_name }} {{ $employee->emp_work_order }} {{ $employee->emp_designation }} {{ $employee->emp_phone_first }} {{ $employee->emp_email_first }} {{ date('jS F,Y', strtotime($employee->emp_doj)) }} {{ $employee->emp_place_of_posting }} {{ $employee->experience && $employee->experience->emp_experience ? $employee->experience->emp_experience . ' yr' : '-' }} {{ $employee->education ? $employee->education->emp_highest_qualification : '-' }} {{ $employee->emp_current_working_status }}
No Record Found.
{{-- Pagination --}}
{{ $employees->links() }}
@endsection @section('script') @endsection