Updating ticket...
@foreach ($stages as $stage)
({{ $stage['total'] }}) {{ $stage['label'] }}
    @forelse ($stage['tickets'] as $ticket)
  • {{ $ticket->created_at->format('d M Y') }}
    View Ticket Edit Ticket @if(!$ticket->isAproved()) Delete Ticket @endif
    #{{ $ticket->id }}
    @if($ticket->request)
    {{ $ticket->request->information['type'] ?? 'No type' }}
    {{ $ticket->request->information['name'] ?? 'No model' }}
    @endif @if ($ticket->stage->value === $rejectableStage)
    Reject Confirm
    @endif
    {{ ucfirst($ticket->status->label()) }}
    Logo
  • @empty
  • No tickets in this stage.
  • @endforelse @if($stage['tickets']->hasPages())
    {{ $stage['tickets']->links() }}
    @endif
@endforeach
@push('scripts') @endpush