mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 19:44:30 -04:00
Merge pull request #4679 from beganovich/v5-0113-show-refunded-amount
(v5) Client portal: Show refunded amount
This commit is contained in:
commit
c7375decf3
@ -69,6 +69,15 @@
|
|||||||
{!! \App\Models\Payment::badgeForStatus($payment->status_id) !!}
|
{!! \App\Models\Payment::badgeForStatus($payment->status_id) !!}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="px-4 py-5 bg-white sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
|
||||||
|
<dt class="text-sm font-medium leading-5 text-gray-500">
|
||||||
|
{{ ctrans('texts.refunded') }}
|
||||||
|
</dt>
|
||||||
|
<div class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
||||||
|
{{ \App\Utils\Number::formatMoney($payment->refunded, $payment->client) }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
@endif
|
@endif
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
@ -90,7 +99,8 @@
|
|||||||
{{ ctrans('texts.invoice_number') }}
|
{{ ctrans('texts.invoice_number') }}
|
||||||
</dt>
|
</dt>
|
||||||
<div class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
<div class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
||||||
<a class="button-link text-primary" href="{{ route('client.invoice.show', ['invoice' => $invoice->hashed_id])}}">
|
<a class="button-link text-primary"
|
||||||
|
href="{{ route('client.invoice.show', ['invoice' => $invoice->hashed_id])}}">
|
||||||
{{ $invoice->number }}
|
{{ $invoice->number }}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user