@component('mail::message')
{{-- Greeting --}}
@if (!empty($greeting))
# {{ $greeting }}
@else
Hello!
@endif
{{-- Intro Lines --}}
@foreach ($introLines as $line)
{{ $line }}
@endforeach
@component('mail::panel')
| Booking Created Date |
{{$orderDetail->created_at->tz($timezone)->format('D jS M Y h:i A')}} |
| Booking Start Date |
{{$orderDetail->start_date_time->tz($timezone)->format('D jS M Y h:i A')}} |
@endcomponent
@component('mail::panel')
| Sub Total |
{!! $orderDetail->sub_total !!} |
| Travel Charges |
{!! $orderDetail->travel_fees !!} |
| VAT (15%) |
{!! $orderDetail->vat !!} |
| Discount |
{!! $orderDetail->added_discount !!} |
| Total Amount |
{!! $orderDetail->total_amount !!} |
| Payment Status |
{{empty(!$orderDetail->payemnt) ? $orderDetail->payemnt->status : '-'}} |
@endcomponent
{{-- Action Button --}}
@component('mail::button', ['url' => $actionUrl])
{{ $actionText }}
@endcomponent
{{-- Outro Lines --}}
@foreach ($outroLines as $line)
{{ $line }}
@endforeach
{{-- Salutation --}}
Thanks,
GoodApp
GoodApp Team.
{{-- Subcopy --}}
@isset($actionText)
@slot('subcopy')
@lang("If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\n".
'into your web browser:',
[
'actionText' => $actionText,
]) [{{ $displayableActionUrl }}]({{ $actionUrl }})
@endslot
@endisset
@endcomponent