@extends('admin.layouts.admin') @section('style') @endsection @section('content')

Resign Application List

@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

Filter

Search Employee

@csrf
Clear
@php $exitInterviewQuestion = getExitInterviewQuestion(); @endphp @forelse($resign_application_lists as $resignApplication) @empty @endforelse
No Employee ID Employee Name Designation Contact Number Leaving/Resignation date Approval Status Submitted By Approved By Action
{{ $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 ?? '' }}
No Records Found !!
@include('admin.sections.footer')
@endsection