@if(session('success'))
{!! session('success') !!}
@elseif(session('danger'))
{{ session('danger') }}
@endif
@if ($errors->has('quantity'))
{{ $errors->first('quantity') }}
@endif
All Tickets
@foreach($ticket as $data)
{!! nl2br(htmlentities($data->content)) !!}
@endforeach
@if($data_ticket->status != 'Closed')
@else
Ticket ditutup, silahkan buat tiket baru
@endif