@extends('layouts.app') @section('content')
@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
@livewire('company.agent.create', ['containerId' => 'createAgentModal']) @endsection