@extends('layouts.admin.layout') @section('content')
| Submitted By | {{ $help->user->FullName ?? $help->user->name ?? '—' }} |
| Contact Details | {{ $help->contact_details ?? '—' }} |
| Title | {{ $help->title }} |
| Description | {{ $help->description }} |
| Submitted | {{ $help->created_at->diffForHumans() }} — {{ $help->created_at->format('d M Y, g:i a') }} |
| Current Status | {{ $help->status }} |
This request has already been {{ $help->status === 'approve' ? 'approved' : $help->status }}.
@endif