@extends('layouts.admin') @section('title') View ticket {{ $ticket->id }} @endsection @section('content-header')

Ticket #{{ $ticket->id }}{{ $ticket->title }}

@endsection @section('content')
This ticket is currently marked as {{ $ticket->status }}
{!! csrf_field() !!}
{!! csrf_field() !!}
@foreach ($messages as $message) @if($message->user_id == 0) @else @endif @endforeach
Author Content Message Sent
System Message {{ $message->user->email }} @if($message->user->root_admin)@endif{{ $message->content }} {{ $message->created_at->diffForHumans() }}

Send a Message

Send a message to the ticket which can be viewed by the client.

{!! csrf_field() !!}
@endsection