@extends('documents.layout') @section('content')
CUSTOMER INFORMATION
Name:
{{ $customer['name'] }}
Email:
{{ $customer['email'] }}
ORDER INFORMATION
Order ID:
#{{ $order['id'] }}
Order Date:
{{ $order['date'] }}
Payment Date:
{{ $order['paid_date'] }}
ORDER ITEMS
@foreach($items as $item) @endforeach
Description Price Discount Total
{{ $item['description'] }} {{ number_format($item['price'], 2) }} {{ number_format($item['discount'], 2) }} {{ number_format($item['total'], 2) }}
Subtotal:
{{ number_format($order['subtotal'], 2) }}
Discount:
{{ number_format($order['discount'], 2) }}
Total:
{{ number_format($order['total'], 2) }}
PAYMENT DETAILS
@foreach($payments as $payment) @endforeach
Payment Method Reference Amount
{{ $payment['method'] }} {{ $payment['reference'] ?? '-' }} {{ number_format($payment['amount'], 2) }}

PAID IN FULL

Thank you for your business with Zuppi Pet Services. This receipt confirms your payment for the services listed above.

@endsection