@extends('emails.app') @section('content') Dear Admin, Order Confirmation
{{ $order->billing_first_name }} {{ $order->billing_last_name }}
Email: {{ $order->billing_email }}
Invoice No. {{ $order->invoice_no }}
Ordered Date: {{ $order->created_at }}
@if(count($order->details)>0) @foreach($order->details as $detail) @endforeach @endif @if($order->discount==0 && $order->discount_coupon!=NULL) @elseif($order->discount!=0) @endif @if($order->shipping_amount!=0) @endif @if($order->tax!=0) @endif
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) }}
To complete order please login to admin


LOG IN Kind Regards
{{ env('APP_NAME') }} @endsection