@include('emails.common.header')
@component('emails.common.table')
@component('emails.common.td')
@component('emails.common.p')
Hello {{$consultant->first_name }},
@endcomponent
@component('emails.common.p')
This email is to serve as a receipt of payment under the following details:
@endcomponent
@component('emails.common.p')
Product: {{ $order->plan->name }}
Amount: TZS {{ localeCurrency($order->price) }}
Payment Details: Trans ID - {{ $transId}}, Trans Reference - {{ $transReference }}
@endcomponent
@component('emails.common.p')
Payment Breakdown:
Fee: TZS {{ localeCurrency($order->price/1.182) }}
VAT(18%): TZS {{ localeCurrency(($order->price / 1.18) * 0.18) }}
Total Price: TZS {{ localeCurrency($order->price) }}
@endcomponent
@component('emails.common.p')
On behalf of the Empower team thank you for your custom.
@endcomponent
@endcomponent
@component('emails.common.td')
@component('emails.common.secondary_footer')
@endcomponent
@endcomponent
@endcomponent
@include('emails.common.footer')