@if(empty($eventPickupDateTime))
Select desired pickup time
@foreach($dateOptions as $dateOption)
{{ date('D, M jS', strtotime($dateOption)) }}
@endforeach
{!! $timeSlots !!}
Go
@else
You've selected the following date/time to pickup your order
{!! date('D, M jS - g:i a',strtotime($eventPickupDateTime)) !!}
@endif