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

The table below includes all monthy dues payments that you have made online. This list does not include any payments that you have not made online. This information only dispalays the payments which you have made on this site.

If you have any discrepancies with the information provided below, please contact your homeowner's association treasurer.

Payment History for {{ auth()->user()->first_name . " " . auth()->user()->last_name }}
{{ auth()->user() ->associationUnit->address }}
@if($paymentHistory) @foreach($paymentHistory as $payment) @endforeach
Created at Payment Type Payment Description Itemized Breakdown Status Amount
{{ Carbon::createFromTimestamp($payment->created)->format("M d, Y h:m a") }} {{ $payment->object }} {{ $payment->metadata->chargeName }}
(Hover to see itemization)
{{ $payment->status }} ${{ number_format($payment->amount / 100.0, 2) }}
@else
You have not yet made any online payments
@endif
@stop