@extends('backend.layouts.master') @section('content')
{{ translate('Total Deposit Amount') }}

{{ currency_symbol(). $data['total_deposit']}}

{{ translate('Total Pay Amount') }}

{{ currency_symbol().$data['total_pay']}}

{{ translate('Total Pending Amount') }}

{{ currency_symbol().$data['total_pending']}}

{{ translate('Total Customer') }}

{{$data['total_customers']}}

{{$page_title ?? ''}}

{{translate('Add New')}} {{translate('Add New')}}
@if($customers) @foreach($customers as $customer)
@if($customer->image) {{$customer->username}} @else {{$customer->username}} @endif @if($customer->country_id) {{$customer->countries?->name}} {{$customer->countries?->country_code}} @endif @if($customer->status == 1) @else @endif

{{$customer->fname .' '. $customer->lname}}

Customer ID: {{$customer->custom_id}}
@csrf
status==1)?'checked':''}}>
@endforeach @else

{{translate('Customers Not Found')}}!

@endif
@push('footer')
{!! $customers->links() !!}
@endpush @endsection