@if (!$status || $status == 'all' || $status == $statuses::ACTIVE)
Активные
@livewire('agentsTable', ['status' => $statuses::ACTIVE])
@endif
@if (!$status || $status == 'all' || $status == $statuses::DISMISSED)
Уволенные
@livewire('agentsTable', ['status' => $statuses::DISMISSED])
@endif
@endsection