@extends('layout.mainlayout') @section('content')
@component('components.breadcrumb') @slot('title') View Leave Calendar @endslot @endcomponent @if (session('success'))
{{ session('success') }}
@endif

Leave Calendar Document Preview

@if (isset($document) && $document->leave_calendar) @php $extension = pathinfo($document->leave_calendar, PATHINFO_EXTENSION); $fileUrl = asset('storage/' . $document->leave_calendar); @endphp
@if (in_array($extension, ['pdf']))
@elseif(in_array($extension, ['jpg', 'jpeg', 'png', 'gif'])) Leave Calendar @else

Unsupported file type: {{ $extension }}

@endif
@else

No Leave Calendar uploaded yet.

@endif
@endsection