@extends('main') @section('css') @endsection @section('content')

Ticket - #{{ $ticket['tid'] }}

@if(session('message'))
@endif

Reply

@csrf
@foreach($ticket['replies']['reply'] as $t)

{{ $t['name'] ? $t['name'] : $t['admin'] }} Posted on {{ date('l jS F H:i', strtotime($t['date'])) }}

{!! htmlspecialchars_decode($t['message']) !!}

@endforeach
@endsection @section('js') @endsection