@dispatchEvent('filters.afterLefthandSectionOpen')
@include('tickets::submodules.ticketNewBtn')
@include('tickets::submodules.ticketFilter')
@dispatchEvent('filters.beforeLefthandSectionClose')
@foreach ($allTicketGroups as $group)
@if ($group['label'] != 'all')
{{ $group['label'] }} ({{ count($group['items']) }})
@endif
@php $allTickets = $group['items']; @endphp
@dispatchEvent('allTicketsTable.beforeHead', ['tickets' => $allTickets])
@dispatchEvent('allTicketsTable.beforeHeadRow', ['tickets' => $allTickets])
@dispatchEvent('allTicketsTable.afterHeadRow', ['tickets' => $allTickets])
@dispatchEvent('allTicketsTable.afterHead', ['tickets' => $allTickets])
@dispatchEvent('allTicketsTable.beforeFirstRow', ['tickets' => $allTickets])
@foreach ($allTickets as $rowNum => $row)
@if ($group['label'] != 'all')
@endif
@endforeach
| {{ $row['headline'] }} | @dispatchEvent('allTicketsTable.beforeRowEnd', ['tickets' => $allTickets, 'rowNum' => $rowNum])