|
|
Dear Admin,
|
|
A new withdrawal request has been submitted by {{($driver->first_name . $driver->last_name)?? $driver->driver_name }}. Please review the details below:
|
|
${{ number_format($withdrawalRequest->amount, 2) }}
|
Restaurant Information
| Driver Name: |
{{ ($driver->first_name . $driver->last_name) ?? $driver->driver_name }} |
| Email: |
{{ $driver->email }} |
| Phone: |
{{ ($driver->country_code . $driver->phone) ?? 'N/A' }}
|
| Available Balance: |
${{ number_format($withdrawalRequest->available_balance, 2) }} |
|
Bank Account Details
| Account Holder: |
{{ $bank_account->account_holder_name ?? 'N/A' }} |
| Account Type: |
{{ $bank_account->account_type ?? 'N/A' }} |
| Account Number: |
{{ $bank_account->account_no ?? 'N/A' }} |
| Phone Number: |
{{ $bank_account->phone_number ?? 'N/A' }} |
|
Request Details
| Request ID: |
#{{ $withdrawalRequest->id }} |
| Requested Amount: |
${{ number_format($withdrawalRequest->amount, 2) }} |
| Request Date: |
{{ $withdrawalRequest->created_at->format('F j, Y \a\t g:i A') }} |
| Status: |
{{ ucfirst($withdrawalRequest->status) }} |
@if($withdrawalRequest->notes)
| Notes: |
{{ $withdrawalRequest->notes }} |
@endif
|
|
Please log into the admin panel to review and process this withdrawal request.
|
Best regards,
Muftaax System
|