|
[{{ $row->id }}] {{ $row->subject }}
|
{{ $row->created_at->format('d M, Y \a\t h:i a') }}
|
{{ optional($row->user)->name }} ({{ optional($row->user)->email }})
|
{{ $row->getUsers() }}
|
{{ $row->is_archived ? 'Yes' : 'No' }}
|
{{ $row->status->value }}
|
@if ($row->last_reply && $row->last_reply->user)
{{ $row->last_reply->user->name }} on
{{ $row->last_reply->created_at->format('d M, Y \a\t h:i a') }}
@elseif ($row->last_reply)
System on {{ $row->last_reply->created_at->format('d M, Y \a\t h:i a') }}
@endif
|
@endforeach