@extends('layouts.app') @section('title', 'Leave Requests | Institution Axis') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('sidebar-footer')
{{ auth()->user()->school?->name ?? 'Institution Axis' }}
@endsection @section('breadcrumb') Home / Staff / Leave Requests @endsection @section('navbar-right') @endsection @section('content')| # | Staff Member | Leave Type | From | To | Days | Status | Submitted | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
|
{{ $leave->leave_type_label }} | {{ $leave->start_date->format('d M Y') }} | {{ $leave->end_date->format('d M Y') }} | {{ $leave->days_requested }}d | {{ ucfirst($leave->status) }} | {{ $leave->created_at->format('d M Y') }} | Review |
| No leave requests found. | ||||||||