@isset($invoice->order) @php $order = $invoice->order; $isPickup = $order->delivery->is_in_store_pickup ?? false; $isWired = $order->order_type === 'Wired'; $delivery = $order->delivery ?? null; $customer = $order->customer ?? null; $cardMessage = $order->cardMessage ?? null; @endphp

Hyde Park Florist Chicago

1748 E 55th Street Chicago IL 60616

773-288-2800 • www.hydeparkfloristchicago.com

@if($isPickup)

PICKUP ORDER

DATE: {{ $delivery->delivery_date ?? 'Not specified' }}

@else

DELIVERY DATE: {{ $delivery->delivery_date ?? 'Not specified' }}

@endif

INVOICE NO. {{ $order->invoice->number }}

@if($isWired)

WIRE INFORMATION

Wire ID: {{ $order->wire_id ?? 'Not specified' }}

@else

CUSTOMER DETAILS

{{ $customer->name ?? 'Not specified' }}

{{ $customer->address ?? 'Not specified' }}

{{ $customer->city ?? 'Not specified' }}, {{ $customer->state ?? '' }} {{ $customer->zipcode ?? '' }}

{{ $customer->phone ?? 'Not specified' }}

@endif
@if($isPickup)

PICKUP INFORMATION

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 }}

@endif
@else

DELIVERY INFORMATION

@if($delivery)

Recipient: {{ $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 @else

Delivery information not available

@endif @endif
@forelse ($order->items as $item) @empty @endforelse
PRODUCT 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) }}

CARD MESSAGE

{!! nl2br(e($cardMessage->message ?? 'No special message')) !!}

@else

No order found for this invoice. Click here to add new order

@endisset