{{-- --}}
Customers
| # | Name | Phone | Country | City | Currency | Status | Action | |
|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $user->name }} | {{ $user->email }} | {{ $user->phone }} | {{ optional($user->country)->name }} | {{ optional($user->city)->name }} | {{ isset($user->country) ? $user->country->currency : '' }} | @if ($user->is_approved == 1) Approved @else Pening @endif | @php $kyc = App\Models\KYC::where('customer_id', $user->id)->first(); @endphp @if (!empty($kyc)) KYC @endif |