@extends('dashboard.layouts.app') @section('content')
@if (session('success')) @endif @if ($errors->any()) @endif
Show
@if ($types->isNotEmpty()) @foreach ($types as $type) @endforeach
Type Total Days/Year Max Days Allowed Wait Period Status Action
{{ $type->type }} {{ $type->total_days }} {{ $type->max_leaves_allowed }} {{ $type->applicable_after_work_days }} days {{ $type->active_status ? 'Active' : 'Inactive' }}
{{ $types->appends(request()->except('page'))->links('pagination::bootstrap-5') }}
@else

Please select a role, month, or year to view user records.

@endif
@endsection