@extends('layout.app') @section('content') @if (request()->path() == 'admin/newJoin') @include('clients.reseller_pop_search') @endif
@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')
@if (isset($print_url) && !empty($print_url))
@else @endif {{-- --}}
@endif
Processing.....
@include('clients.customer_search')
@endsection @section('ajax') @include('clients.JsFile.Customer') @endsection