Build the stuff for payments.

This commit is contained in:
2025-01-16 15:34:10 +01:00
parent f120559e3b
commit dcedbc71c4
17 changed files with 670 additions and 31 deletions

View File

@@ -23,6 +23,10 @@
:active="\Illuminate\Support\Str::startsWith(request()->route()->getName(), 'invoice.')">
{{ __('invoice.Invoices') }}
</x-nav-link>
<x-nav-link :href="route('payment.index')"
:active="\Illuminate\Support\Str::startsWith(request()->route()->getName(), 'payment.')">
{{ __('invoice.Payments') }}
</x-nav-link>
<x-nav-link :href="route('taxrate.index')"
:active="\Illuminate\Support\Str::startsWith(request()->route()->getName(), 'taxrate.')">
{{ __('configuration.Taxrates') }}
@@ -93,7 +97,7 @@
<div :class="{'block': open, 'hidden': ! open}" class="hidden sm:hidden">
<div class="pt-2 pb-3 space-y-1">
<x-responsive-nav-link :href="route('dashboard')" :active="request()->routeIs('dashboard')">
{{ __('common.Dashboard') }}
{{ __('dashboard.Dashboard') }}
</x-responsive-nav-link>
</div>