@extends('layouts.frontend.master') @section('title', $notice->title . ' - Notice Details') @push('css') @endpush @section('content') Notice Details {{-- Event Name (full width) --}} Notice Title @if($notice->title) {{ $notice->title }} @endif {{-- Description (full width) --}} @if(isset($notice->description)) Description {!! $notice->description ?? 'Not specified' !!} @endif Attachment @php $fileExtension = pathinfo($notice->attachment, PATHINFO_EXTENSION); @endphp @if (in_array($fileExtension, ['jpg', 'jpeg', 'png', 'gif', 'webp'])) @elseif ($fileExtension === 'pdf') @else No valid attachment available @endif @endsection
@if($notice->title) {{ $notice->title }} @endif
No valid attachment available