Sold to:
{{ $order->user->firstname }} {{ $order->user->lastname }}
Address:
{{ $order->user->address }}
{{ $order->user->city }}, {{ $order->user->state }} {{ $order->user->zip }}
{{ $order->user->country }}
Email: {{ $order->user->email }}
Phone: {{ localize_us_number($order->user->phone) }}
|
Order Date: {{ date('F j, Y h:m A',strtotime($order->created_at)) }}
Transaction Details
@if($transaction)
Transaction Date: {{ date('F j, Y h:m A',strtotime($transaction->created_at)) }}
Transaction Number: {{ $transaction->transaction_no }}
Transaction Amount: ${{ number_format($transaction->payment_amount,2) }}
Status: {{ ucfirst($transaction->transaction_status) }}
@else
No Transaction Data found!
@endif
{{-- Check with customer service, ref: Order ID {{ $order->id }} --}} @if(env('ZENDESKAPISUBDOMAIN') == 'none') CONTACT SUPPORT ABOUT THIS ORDER (feature unavailable at this time) @else CONTACT SUPPORT ABOUT THIS ORDER @endif |
Name | {{$order->attendees[0]->tag_line_1}} | |
---|---|---|
City/Group: | {{$order->attendees[0]->tag_line_2}} | |
Affiliation: | {{$order->attendees[0]->affiliation_type->name}} | |
Golf: | @if($order->attendees[0]->golfer)Yes | @elseNo | @endif
Name | {{$order->attendees[$i]->tag_line_1}} | |
---|---|---|
City/Group: | {{$order->attendees[$i]->tag_line_2}} | |
Affiliation: | {{$order->attendees[$i]->affiliation_type->name}} | |
Golf: | @if($order->attendees[$i]->golfer)Yes | @elseNo | @endif
Item | Qty | Each | Total |
---|---|---|---|
{{ $item->product->subtitle }} {{ $item->product->title }}
@if($item->product->category_id == 15)
Personalized text: {{$item->custom_option}}{{$item->custom_option2}} |
{{ $item->quantity }} | ${{ number_format($item->product->price,2) }} | @php $subtotal = $item->quantity * $item->product->price; @endphp${{ number_format($subtotal,2) }} |
Total charge | ${{number_format($order->amount,2)}} | ||
Notes or special requests{!! $order->comments !!} |