@if (isset($print_url) && !empty($print_url))
@endif
{{ $list->onEachSide(1)->links() }}
@if (request()->path() != 'admin/new-join')
@php($counter = client_counter())
Total: {{ $list->total() }}
Active:
{{ $counter->where('clients_status', 'active')->first()->total ?? 0 }}
Expired:
{{ $counter->where('clients_status', 'expired')->first()->total ?? 0 }}
Disable:
{{ $counter->where('clients_status', 'disable')->first()->total ?? 0 }}
Deactive:
{{ $counter->where('clients_status', 'deactive')->first()->total ?? 0 }}
@endif
@if (request()->path() == 'admin/clients')
@endif
@include('clients.customer_search')