@extends('master') @section('content')

Billing Detail

{{$billing->firstname." ".$billing->lastname}}
{{$billing->address}}
{{$billing->city}}, {{$billing->state}} - {{$billing->zip}}
{{$billing->country->country_name}}
Ph:{{$billing->phone}}
Email:{{$billing->email}}

Shipping Detail

{{$shipping->firstname." ".$shipping->lastname}}
{{$shipping->address}}
{{$shipping->city}}, {{$shipping->state}} - {{$shipping->zip}}
{{$shipping->country->country_name}}
Ph:{{$shipping->phone}}
Email:{{$shipping->email}}

@foreach($cartItem as $row)
design name size quantity price amount
{{ $row->name}} - {{$row->options->color}} {{$row->options->size}} {{$row->qty}} {{number_format($row->price,2)}} ${{number_format(Cart::total(),2)}}
Note: {{$order->order_remarks}}
@endforeach
 I have read and agree to the Terms and Conditions
        Amex Brand Guidelines   |   Amex SafeKey Overview
@stop @section('scriptBlock') @endsection