@component('mail::message')
# Hello @if($data['type'] == 'decline') {{ $data['first_name'] }} @elseif($data['type'] == 'checkout') {{ $data['first_name'] }} @elseif($data['type'] == 'approve') {{ $data['first_name'] }} @elseif($data['type'] == 'decline') {{ $data['first_name'] }} @elseif($data['type'] == 'withdraw') Admin @else There! @endif
@if($data['type'] == 'checkout')
Your Order Request with tracking code {{ $data['ref_id'] }} has been submitted and would be reviewed and approved upon confirmation of your payment.
Please take note of your tracking code, as it’ll be requested of you at the delivery venue, to claim your goods.
Products Ordered:
@foreach($cart as $prod)
- Product:
- Price: ₦0
- Quanity:
@endforeach
Total: ₦{{ number_format($data['total']) }}
@elseif($data['type'] == 'approve')
Your Order Request {{ $data['ref_id'] }} has been reviewed and is now Approved.
Our dispatch Team will get to you through your submitted mobile number for further instructions on receiving your Products paid for.
In case of any issues faced, please kindly click the button below to contact us.
@elseif($data['type'] == 'decline')
Your purchase request with tracking code {{ $data['ref_id'] }} has been declined, due to a discontinued/unsuccessful payment from your end.
To make a new order, please kindly click the button below and follow the process to completion.
@elseif($data['type'] == 'withdraw')
{{ $data['first_name'] }} has made a withdrawal request, the details are below:
Withdrawal Details:
- User's Name: {{ $data['first_name'] }} {{ $data['last_name'] }}
- User's Email: {{ $data['email'] }}
- Amount To Withdraw: ₦{{ number_format($data['amount']) }}
- Date: {{ date('M j Y', strtotime($data['date'])) }}
@else
{{$data['message']}}
@endif
@if($data['type'] == 'checkout')
@elseif($data['type'] == 'withdraw')
@elseif($data['type'] == 'approve')
@component('mail::button', ['url' => 'https://www.ge-as.com'])
Contact Us
@endcomponent
@elseif($data['type'] == 'decline')
@component('mail::button', ['url' => 'https://www.ge-as.com/login'])
Shop More
@endcomponent
@elseif($data['type'] == 'request_approve')
@component('mail::button', ['url' => 'https://ge-as.com/login'])
Login Here
@endcomponent
@else
@component('mail::button', ['url' => 'https://ge-as.com/ai-bot-plans'])
Click Here
@endcomponent
@endif
Thanks,
{{ config('app.name') }}
@endcomponent