@php
if($ticket->status == 'Closed')
$status = 'bg-light';
elseif($ticket->status == 'Open')
$status = 'bg-primary';
elseif($ticket->status == 'Answered')
$status = 'bg-success';
@endphp
Status
Note: {{ $ticket->status ?? '' }}
Opened
{!! $ticket->created_at ?? '' !!}
Last Response
{!! $ticket->updated_at ?? '' !!}
@if(!empty($ticket->note))
{{ $ticket->note ?? '' }}
@endif
Assign Technician:
(If this ticket is not for you, you can forward to others)