@extends('layouts.default') @section('styles') @stop @section('scripts') @stop @section('panel-heading') Association Fees Payment @stop @section('panel-presentation') @stop @section('content')

Please use the payment button below if you would like to make your monthly dues payment online. This is a one time payment, not a scheduled payment. We may setup the ability to make scheduled payments in the future.

Please be insured that your payment is secure, and is processed by Stripe, a trusted and well established payment processor. If you have any questions regarding the amount of your payment, please contact our association treasurer.

Please note, as shown below, that when making an online payment, you will be charged an additional processing fee which is 2.9% of your total payment. This processing fee is included to offset the charge with the association pays to accept your online payment.

Payment for {{ auth()->user()->first_name . ' ' . auth()->user()->last_name . ', ' . auth()->user()->associationUnit->address }}

Applied Fees @foreach($paymentFees as $paymentFee) @endforeach
Fee Amount
{{ $paymentFee->name }} ${{ number_format($paymentFee->amount, 2) }}
Total Fees ${{ number_format($paymentAmount, 2) }}
@if ($previousPayment)
Your previous payment of {{ number_format($previousPayment->amount / 100.00, 2) }} was on {{ Carbon::createFromTimestamp ($previousPayment->created)->format("M d, Y") }}
@endif
{{ csrf_field() }}
@stop