akaunting 3.0 (the last dance)

This commit is contained in:
Burak Civan
2022-06-01 10:15:55 +03:00
parent cead09f6d4
commit d9c0764572
3812 changed files with 126831 additions and 102949 deletions

View File

@ -0,0 +1,25 @@
<div class="flex flex-col text-sm text-black-400">
<div class="font-medium text-black mb-1">
{{ trans('portal.outstanding_balance.title') }}
</div>
@if ($contact)
<span class="text-xs">
{{ trans('portal.outstanding_balance.description') }}
</span>
<div class="flex flex-col items-start my-3">
<span class="text-xl text-black">
<x-money :amount="$contact->overdue" :currency="$contact->currency_code" convert />
</span>
<a href="{{ route('portal.invoices.index') }}" class="px-2 py-1 my-3 rounded-lg text-xs leading-6 bg-green text-white hover:bg-green-700 disabled:bg-green-100">
{{ trans('bills.make_payment') }}
</a>
</div>
@else
<span class="text-xs">
{{ trans('portal.outstanding_balance.not_payment') }}
</span>
@endif
</div>