@extends('emails.app') @section('content')
{{ $order->billing_first_name }} {{ $order->billing_last_name }} Email: {{ $order->billing_email }} |
Invoice No. {{ $order->invoice_no }} Ordered Date: {{ $order->created_at }} |
Subscription | Amount |
---|---|
{!! $detail->title !!} Expiry Date: {{ $order->expiry_date }} |
{!! number_format($detail->amount,2) !!} |
Total Amount | £ {{ number_format($order->total_amount,2)}} |
Coupon Used : | {{ $order->discount_coupon }} |
Discount Amount : @if($order->discount_coupon!=NULL) [ Coupon Used : {{ $order->discount_coupon }}] @endif | £ {{ number_format($order->discount,2) }} |
Shipping Amount : | £ {{ number_format($order->shipping_amount,2) }} |
VAT @ 20% | £ {{ number_format($order->tax,2) }} |
Grand Amount | £ {{ number_format($order->paid_amount,2) }} |