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

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

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

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

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

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

{{ translate('Total Merchant') }}

{{$data['total_merchants']}}

{{$page_title ?? ''}}

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

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

Marchant ID: {{ $merchant->custom_id }}
@csrf
status == 1 ? 'checked' : '' }}>
@endforeach @else

{{ translate('No Data Found') }}

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