@extends('layouts.customer') @section('title','Invoice '.$payment->invoice_no) @section('page-title','Invoice') @section('styles') @endsection @section('content')

Tax Invoice

Includes GST

Yahya Playland

123 Business Street

Sydney, NSW 2000

ABN: 12 345 678 910

Invoice #

{{ $payment->invoice_no }}

Date

{{ $payment->created_at->format('d M Y') }}

Bill To

{{ $payment->customer_name }}

{{ $payment->customer_email }}

Description Amount
@if($payment->type === 'donation') Donation Payment @else Credit Pre-payment @endif ${{ number_format($payment->amount_ex_gst, 2) }}
Subtotal ${{ number_format($payment->amount_ex_gst, 2) }}
GST (10%) ${{ number_format($payment->gst, 2) }}
Total (incl. GST) ${{ number_format($payment->amount, 2) }}
GST Summary: This is a tax invoice for GST purposes. GST amount shown is included in the total price.
← Back to Payments
@endsection