updated blade components

This commit is contained in:
Denis Duliçi
2023-07-11 12:17:01 +03:00
parent bfb37c62c6
commit 49a04cd854
29 changed files with 63 additions and 63 deletions

View File

@ -9,7 +9,7 @@
</span>
<span class="text-xl text-black my-3">
<x-money :amount="$payment->amount" :currency="$payment->currency_code" convert />
<x-money :amount="$payment->amount" :currency="$payment->currency_code" />
</span>
@else
<span class="text-xs">

View File

@ -10,9 +10,9 @@
<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 />
<x-money :amount="$contact->overdue" :currency="$contact->currency_code" />
</span>
<x-link 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" override="class">
{{ trans('bills.make_payment') }}
</x-link>