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

Leave History @if(isset($totalLeaves) && $totalLeaves ) ({{$totalLeaves }}) @endif

View all your applied leaves and approval status

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

No Leave Records Found

@endif
@endsection @section('scripts') @endsection