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

HR Policy Document Preview

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

Unsupported file type: {{ $extension }}

@endif
@else

No HR Policy uploaded yet.

@endif
@endsection