@extends('layouts.customer') @section('title','Payment Successful') @section('page-title','Payment Successful') @section('styles') @endsection @section('content')
Thank You

Payment Successful!

Your credit has been added to your account.

@if($payment)
{{ $payment->invoice_no }}
Customer{{ $payment->customer_name }}
Amount Paid${{ number_format($payment->amount, 2) }} AUD
Amount (ex GST)${{ number_format($payment->amount_ex_gst, 2) }}
GST (10%)${{ number_format($payment->gst, 2) }}
Card{{ $payment->card_brand }} ********* {{ $payment->card_last4 }}
Date{{ $payment->created_at->format('d M Y, h:i A') }}
StatusPaid
@endif Back to Dashboard
@endsection