@extends('layouts.customer') @section('title','Invoice '.$payment->invoice_no) @section('page-title','Invoice') @section('styles') @endsection @section('content')
TAX INVOICE
{{ $payment->invoice_no }}
{{ $payment->created_at->format('d M Y') }}

Bill To
{{ $payment->customer_name }}
{{ $payment->customer_email }}
Payment Method
{{ ucfirst($payment->card_brand ?? 'Card') }} @if($payment->card_last4) •••• {{ $payment->card_last4 }} @endif
DescriptionAmount
Prepayment Credit (No Expiry) ${{ number_format($payment->amount_ex_gst, 2) }}
Subtotal (ex GST)${{ number_format($payment->amount_ex_gst, 2) }}
GST (10%)${{ number_format($payment->gst, 2) }}
Total (inc GST)${{ number_format($payment->amount, 2) }} AUD
← Back to Payments
@endsection