@section('page_content')
@csrf

Search Filter

{{-- Hidden inputs for table sorting --}}

{{ $page_title }}

@if ($accounts->count() > 0) @foreach ($accounts as $account) @endforeach @else @endif
Client Name Email Phone Client Type Status Created Date Action
{{ $account->name }} {{ $account->email }} {{ $account->phone }} {{ $account->account_type }} {{ $account->status == 1 ? 'Active' : 'Inactive' }} {{ date_format(date_create($account->created_at), 'Y-m-d') }}
Currently no Clients exists in the database.
@stop