@extends('layouts.default') @section('content') @include('layouts.partials.messages')
@if($user->isAdmin()) @endif
Profile Picture

{{$ticket->user->name}}

{{$ticket->present()->createdTime}}

{{$ticket->content}}

@if(count($ticket->attachment) > 0)

{{$ticket->attachment->orginal_name}}

@endif
@foreach($ticket->comments as $comment) @include('layouts.partials.single-ticket-view') @endforeach
@if($ticket->status == '0') @include('layouts.partials.new-ticket-comment') @endif @stop @section('scripts') @stop