@extends('layouts.admin') @section('title', 'Bulletin') @section('content')
ID | {{ $bulletin->id }} |
---|---|
State | {{ $bulletin->state->name ?? 'N/A' }} |
User | {{ $bulletin->user->first_name ?? '' }} {{ $bulletin->user->last_name ?? '' }} |
Subject | {{ $bulletin->subject ?? 'N/A' }} |
Body | {!! $bulletin->body !!} |
Photo |
@if($bulletin->attachment)
@if(in_array($bulletin->attachment_extension, ['jpg', 'png', 'jpeg', 'gif', 'svg']))
Attachment: Download ({{ $bulletin->attachment }}) @elseif(in_array($bulletin->attachment_extension, ['doc', 'docx']))Attachment: Download ({{ $bulletin->attachment }}) @endif @elseNo Attachment @endif |