Register

EDIT THIS ORDER

Shopping Cart

Registrant

Name:
{{$user->full_name}}
Address:
{{$user->address}}
{{$user->city}}, {{$user->state}} {{$user->zip}}
{{$user->country}}
Phone:
{{localize_us_number($user->phone)}}
Email:
{{$user->email}}
@if($order->attendees->count() > 0)

Badges

Name:
{{$order->attendees[0]->tag_line_1}}
City/Group:
{{$order->attendees[0]->tag_line_2}}
Affiliation:
{{$order->attendees[0]->affiliation_type ? $order->attendees[0]->affiliation_type->name : null}}
@if($order->golfers->count() > 0)

Golfers in your party

Golf::
Yes
Golfer 1:
{{$order->golfers[0]->golfer1}}
Golfer 2:
{{$order->golfers[0]->golfer2}}
Golfer 3:
{{$order->golfers[0]->golfer3}}
Golfer 4:
{{$order->golfers[0]->golfer4}}
@endif @endif
@if(count($order->attendees) > 1)

Additional Registrants

@for($i = 1; $i < count($order->attendees); $i++)

Badge {{($i + 1)}}

Name:
{{$order->attendees[$i]->tag_line_1}}
City/Group:
{{$order->attendees[$i]->tag_line_2}}
Affiliation:
{{$order->attendees[$i]->affiliation_type->name}}
@if($order->golfers->count() > 0)
Golf:
Yes
@endif
@endfor @endif
@if($order->items)

Items To Be Ordered

Items
Amount
@foreach($order->items as $item)
{{ $item->product->subtitle }} {{ $item->product->title }}
Quantity: {{ $item->quantity }}
Price each: ${{ number_format($item->product->price,2) }} @if($item->product->category_id == 15)
Personalized text:
{{$item->custom_option}}
{{$item->custom_option2}}
@endif
@php $subtotal = $item->quantity * $item->product->price; @endphp ${{ number_format($subtotal,2) }}
@endforeach
Total to be charged
${{number_format($order->amount,2)}}
@if($order->comments != "")
Notes/Group Seating/Special Requests
{!! $order->comments !!}
@endif
@endif @if($order->items->count() > 0) @endif
@livewire('footer-links')