@extends('layouts.admin') @section('title', 'View Ticket') @section('content')
User: {{ $ticket->user->name }}
Email: {{ $ticket->user->email }}
Status: {{ ucfirst(str_replace('_', ' ', $ticket->status)) }}
Created At: {{ $ticket->created_at->format('Y-m-d H:i:s') }}
{{ $ticket->description }}
@if ($ticket->attachment)Attachment:
View/Download @endifNo replies yet.
@endforelse