@extends('layouts.app') @section('contents')
{{$customer[0]['first_name'].' '.$customer[0]['last_name']}}
@foreach($emails as $email) {{$email}} @endforeach
{{$customer[0]['phone']}}
Billing Address
{{$billingAddress->address1}}
{{$billingAddress->city}}
{{$billingAddress->state}}
{{$billingAddress->zip}}
{{$billingAddress->country}}
Shipping Address
{{$shippingAddress->address1}}
{{$shippingAddress->city}}
{{$shippingAddress->state}}
{{$shippingAddress->country}}
{{$shippingAddress->zip}}
Invoices
@foreach($datas as $data) @endforeach
Invoice Date Order Number Order status Total w/o Tax Total
{{$data->invoice_date}} {{$data->visual_id}} {{$data->order_status_name}} {{$data->order_total}} {{$data->order_subtotal}}
@endsection @push('script') @endpush