@extends('layouts.userLayout') @section('content') {{-- --}} @php $totalLeaves = isset($listing) ? $listing->total() : 0; @endphp
@include('user.partials.flash_messages')

My Student's Leave History ({{ $totalLeaves }})

View all your applied leaves and approval status

{{-- @php $totalLeaves = isset($listing) ? $listing->total() : 0; @endphp Total {{ $totalLeaves }} {{ $totalLeaves == 1 ? 'Leave' : 'Leaves' }} --}} Apply Leave
@if (isset($listing) && count($listing) > 0)
@include('user.leaves.listingLoop')
# From Date To Date Days Subject Status Action
@else
...

No Leave Records Found

@endif
{{-- add modal --}} {{-- edit modal --}} @endsection @section('scripts') @endsection