@if(session('alert-green'))
{{ session('alert-green') }}
@endif
@if(session('alert-danger'))
{{ session('alert-danger') }}
@endif
@if($errors->any())
@foreach ($errors->all() as $error)
* {{$error}}
@endforeach
@endif
| No |
Employee ID |
Employee Name |
Designation |
Contact Number |
Leaving/Resignation date |
Approval Status |
Submitted By |
Approved By |
Action |
@php
$exitInterviewQuestion = getExitInterviewQuestion();
@endphp
@forelse($resign_application_lists as $resignApplication)
| {{ $loop->iteration }} |
{{ $resignApplication->emp_id ?? '' }} |
{{ $resignApplication->employee->user->name ?? '' }} |
{{ $resignApplication->employee->user->user_type ?? '' }} |
{{ $resignApplication->employee->user->phone ?? '' }} |
{{ $resignApplication->resign_date ?? '' }} |
@if($resignApplication->resign_is_approve == 1)
Approved
@elseif($resignApplication->resign_is_approve == 2)
Rejected
@else
Pending
@endif
|
{{ $resignApplication->submittedBy->name ?? '' }} |
{{ $resignApplication->user->name ?? '' }} |
|
@empty
| No Records Found !! |
@endforelse
@include('admin.sections.footer')
@endsection