@push('styles') @endpush
@foreach ($stages as $stage)
{{ $stage['label'] }}
{{ $stage['total'] }}
    @forelse ($stage['tickets'] as $ticket)
  • {{ $ticket->created_at->format('d M Y') }}
    #{{ $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