@extends('layouts.app') @section('title','Checkout') @section('style') @endsection @section('content')
ORDER COMPLETE! Thank you for placing an order. Please print this page for your records.
300 E. Tena St.
Jacksonville, TX 75766
Date Order Number
{{$date}} {{$order['last_id']}}
SHIP TO

{{$order['ship_to']}}

{{$order['ship_address']}}

{{$order['ship_city']}}, {{$ship_state->name}}

BILL TO

{{$order['bill_to']}}

{{$order['bill_address']}}

{{$order['bill_city']}}, {{$bill_state->name}}

CUSTOMER INFORMATION

{{$order['company']}}

{{$order['first_name']}} {{$order['last_name']}}

{{$order['email']}}

{{$order['phone']}}

PAYMENT INFORMATION
@if($order['payment_method'] == 'cc')

Name on card: {{$order['card_name']}}

Card Number: {{$card_number}}

 

@else

Invoice: P.O. # {{$order['last_id']}}

 

 

@endif
@foreach($cart as $item) @endforeach
SKU Description Price Each Qty. Amount
{{$item['options']['sku']}} {{$item['name']}} $ {{$item['price']}} {{$item['qty']}} $ {{$item['subtotal']}}
Subtotal $ {{$order['total']}}
You will be contacted about the final shipping cost.
@if (Session::has('order.label'))
LABEL
@if(isset($label['canvas'])) @elseif(isset($label['photo']['file'])) @else Label: Existing Label @endif
@endif
ADDITIONAL INFORMATION

{{$order['comment']}}

@endsection