­{{ $order->created_at }}

Hi {{ $order->user->name }}!

This is your receipt.

From {{ $order->vendor->name }} ­{{ $order->vendor->name }}
@if( $order->vendor->is_package_vendor ) @else @foreach ($order->products as $product) @endforeach @endif {{-- subtotal --}} {{-- discount --}} {{-- delivery fee --}} {{-- tax --}}

1 x {{ $order->package_type->name }}

{{ setting('currency', '$') }} {{ $order->sub_total ?? '0.00' }}

{{ $product->quantity }} x {{ $product->product->name }} {{ $product->options }}

{{ setting('currency', '$') }} {{ $product->price }}

Subtotal

{{ setting('currency', '$') }} {{ $order->sub_total ?? '0.00' }}

Discount Amount

- {{ setting('currency', '$') }} {{ $order->discount ?? '0.00' }}

Delivery fee

+ {{ setting('currency', '$') }} {{ $order->delivery_fee ?? '0.00' }}

Tax

+ {{ setting('currency', '$') }} {{ $order->tax ?? '0.00' }}

Total charged:

{{ setting('currency', '$') }} {{ $order->total ?? '0.00' }}

Payment Method

{{ $order->payment_method->name ?? '' }}