Add Transaction View

This commit is contained in:
Bob Molitor
2025-10-20 20:48:48 +02:00
parent ff18358b19
commit d17b90bcb9
9 changed files with 769 additions and 6 deletions
@@ -13,8 +13,9 @@
<flux:navlist variant="outline">
<flux:navlist.group :heading="__('Platform')" class="grid">
<flux:navlist.item icon="home" :href="route('dashboard')" :current="request()->routeIs('dashboard')" wire:navigate>{{ __('Dashboard') }}</flux:navlist.item>
<flux:navlist.item icon="home" :href="route('dashboard')" :current="request()->routeIs('dashboard')" wire:navigate>{{ __('Übersicht') }}</flux:navlist.item>
<flux:navlist.item icon="magnifying-glass" :href="route('company-search')" :current="request()->routeIs('company-search')" wire:navigate>{{ __('Unternehmensauskunft') }}</flux:navlist.item>
<flux:navlist.item icon="shield-check" :href="route('transaction-review')" :current="request()->routeIs('transaction-review')" wire:navigate>{{ __('Transaktionsprüfung') }}</flux:navlist.item>
</flux:navlist.group>
</flux:navlist>
@@ -62,7 +63,7 @@
<flux:menu.separator />
<flux:menu.radio.group>
<flux:menu.item :href="route('profile.edit')" icon="cog" wire:navigate>{{ __('Settings') }}</flux:menu.item>
<flux:menu.item :href="route('profile.edit')" icon="cog" wire:navigate>{{ __('Einstellungen') }}</flux:menu.item>
</flux:menu.radio.group>
<flux:menu.separator />
@@ -70,7 +71,7 @@
<form method="POST" action="{{ route('logout') }}" class="w-full">
@csrf
<flux:menu.item as="button" type="submit" icon="arrow-right-start-on-rectangle" class="w-full" data-test="logout-button">
{{ __('Log Out') }}
{{ __('Abmelden') }}
</flux:menu.item>
</form>
</flux:menu>
@@ -112,7 +113,7 @@
<flux:menu.separator />
<flux:menu.radio.group>
<flux:menu.item :href="route('profile.edit')" icon="cog" wire:navigate>{{ __('Settings') }}</flux:menu.item>
<flux:menu.item :href="route('profile.edit')" icon="cog" wire:navigate>{{ __('Einstellungen') }}</flux:menu.item>
</flux:menu.radio.group>
<flux:menu.separator />
@@ -120,7 +121,7 @@
<form method="POST" action="{{ route('logout') }}" class="w-full">
@csrf
<flux:menu.item as="button" type="submit" icon="arrow-right-start-on-rectangle" class="w-full" data-test="logout-button">
{{ __('Log Out') }}
{{ __('Abmelden') }}
</flux:menu.item>
</form>
</flux:menu>