Build overview and handling for unpaid incoming.

This commit is contained in:
2025-02-13 11:28:30 +01:00
parent c5a58436e1
commit 447a7d59d5
12 changed files with 284 additions and 7 deletions

View File

@@ -17,11 +17,15 @@
{{ __('invoice.Select invoice') }}
</h2>
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
{{ __("invoice.Select your invoice for payment") }}
{{ __('invoice.Select your invoice for payment') }}
</p>
</header>
<div class="mt-8">
<div class="mt-8" x-show="invoices.length == 0">
{{ __('invoice.No invoices') }}
</div>
<div class="mt-8" x-show="invoice.length != 0">
<template x-for="(invoice, index) in invoices" x-bind="invoices">
<div class="cursor-pointer grid grid-cols-4 even:bg-gray-100 odd:bg-white"
:class="invoice.id == invoice_id ? 'font-bold' : ''"