@extends('customer.layout') @section('content')
Purchase Date: {{ $order['created_at'] }}
{{ $product_count }} items
Total {{ $order['total_amount'] }}
@if($payment != null) Paid @else Pending Payment @endif
{{-- --}} {{--
--}}

Items

{{-- --}}
@foreach($products as $product) @endforeach {{-- --}} {{-- --}}
{{ config('app.currency') . number_format( $product['price'] * $product['order_qty'] * config('app.exchange_rate') * config('app.company_rate'), 2)}}
{{ $product['order_qty'] }}
{{ config('app.currency') . number_format( $product['price'] * $product['order_qty'] * config('app.exchange_rate') * config('app.company_rate'), 2)}}
Subtotal + {{ config('app.vat') }}%
{{ config('app.currency') . number_format( $order['total_amount'], 2) }}
Store Credit
$-20.00
Shipping
via FedEx International
$25.00
Total
{{config('app.currency').''. number_format($order['total_amount']) }}

Customer

{{--
--}}
{{ $customer->firstname .' '. $customer->lastname }}
{{--
This is a first order
--}}

Contact person

{{-- Edit --}}
{{ $user->firstname .' '. $user->lastname }}
{{ $customer->telephone }}

Shipping Address

{{-- Edit --}}
{{ $customer->shipping_address }}
{{ $customer->shipping_country }}
@endsection