Invoice # 123456

Invoice date:

{{ Carbon\Carbon::now()->format('M d, Y') }}

Customer

{{ $customer->name }}

{{ $customer->phone }}

{{ $customer->email }}

{{ $customer->address }}

Store

Name Store

(+62) 123 123 123

email@example.com

Cirebon, Jawa Barat, Indonesia

@foreach ($carts as $item) @endforeach
Item Price Quantity Subtotal
{{ $item->name }} {{ $item->price }} {{ $item->qty }} {{ $item->subtotal }}
Subtotal {{ Cart::subtotal() }}
Tax {{ Cart::tax() }}
Total {{ Cart::total() }}
{{-- --}}
{{ __('Back') }}