@extends('documents.layout') @section('content')
CUSTOMER INFORMATION
Name:
{{ $customer['name'] }}
Email:
{{ $customer['email'] }}
ORDER INFORMATION
Order ID:
#{{ $order['id'] }}
Order Date:
{{ $order['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 Terms: Due upon receipt

Thank you for choosing Zuppi Pet Services. This invoice represents charges for the services listed above.

@endsection