@extends('layouts.app') @section('page-title', __('Payment Details')) @section('page-heading', __('Payment Details for ' . $user->first_name . ' ' . $user->last_name)) @section('styles') @endsection @section('content')
| Date | Payment Cycle | Amount | Tax | Net Payable | Status | Invoice | Actions |
|---|---|---|---|---|---|---|---|
| {{ $payment->created_at->format('M d, Y') }} | {{ $payment->paymentCycle->description ?? 'N/A' }} | {{ number_format($payment->amount_payable, 2) }} | {{ number_format($payment->tax, 2) }} | {{ number_format($payment->net_payable, 2) }} | {{ $payment->status }} | @if($payment->invoice_file || $payment->new_invoice_file) View @else No Invoice @endif | |
| No payments found | |||||||