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

Incident Response Plan Document Preview

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

Unsupported file type: {{ $extension }}

@endif
@else

No Incident Response Plan Document uploaded yet.

@endif
@endsection