@foreach($observations as $observation)
@if($observation->status === \App\Enums\SellTicketObservationEnum::PENDING && auth()->user()->can('finalize_sales_ticket_comment') )
@csrf @method('PATCH')
Change to answered
@endif
{{ ucfirst($observation->stage->label()) }}

{{ $observation->message }}

{{ $observation->created_at->diffForHumans() }}

by: {{ $observation->user->name }}

{{ ucfirst($observation->status->label()) }}
@if($observation->responded_at)

responded at: {{ $observation->responded_at->diffForHumans() }}

@endif
@endforeach @if($observations->isEmpty())
No observations.
@endif