1748 E 55th Street Chicago IL 60616
773-288-2800 • www.hydeparkfloristchicago.com
PICKUP ORDER
DATE: {{ $delivery->delivery_date ?? 'Not specified' }}
@elseDELIVERY DATE: {{ $delivery->delivery_date ?? 'Not specified' }}
@endifINVOICE NO. {{ $order->invoice->number }}
Wire ID: {{ $order->wire_id ?? 'Not specified' }}
{{ $customer->name ?? 'Not specified' }}
{{ $customer->address ?? 'Not specified' }}
{{ $customer->city ?? 'Not specified' }}, {{ $customer->state ?? '' }} {{ $customer->zipcode ?? '' }}
{{ $customer->phone ?? 'Not specified' }}
ORDER WILL BE PICKED UP IN STORE
Location: 1748 E 55th Street Chicago IL 60616
@if($delivery && $delivery->special_instructions)Pickup Instructions: {{ $delivery->special_instructions }}
@endifRecipient: {{ $delivery->name ?? $customer->name }}
Address: {{ $delivery->address }}
{{ $delivery->city }}, {{ $delivery->state }} {{ $delivery->zipcode }}
Phone: {{ $delivery->phone ?? $customer->phone }}
@if($delivery->special_instructions)Delivery Instructions: {{ $delivery->special_instructions }}
@endif @elseDelivery information not available
@endif @endifPRODUCT | QUANTITY | PRICE/UNIT | DISCOUNT | EXTENDED |
---|---|---|---|---|
{{ $item->product->name }} | {{ $item->quantity }} | ${{ number_format($item->price, 2) }} | ${{ number_format($item->discount, 2) }} | ${{ number_format($item->quantity * ($item->price - $item->discount), 2) }} |
No items listed for this order | ||||
{{ $isPickup ? 'PICKUP FEE' : 'DELIVERY FEE' }} | ${{ number_format($order->delivery_fee, 2) }} |
SUB-TOTAL: ${{ number_format($order->subtotal, 2) }}
Sales Tax: ${{ number_format($order->tax, 2) }}
TOTAL: ${{ number_format($order->total, 2) }}
No order found for this invoice. Click here to add new order
@endisset