WIP
Some checks failed
linter / quality (push) Successful in 5m51s
tests / ci (push) Failing after 10m40s

This commit is contained in:
Javier Feliz 2025-08-02 16:27:58 -04:00
parent 2e95a2a271
commit 5b141e07b1

View File

@ -17,17 +17,16 @@
<flux:navbar class="-mb-px max-lg:hidden"> <flux:navbar class="-mb-px max-lg:hidden">
<flux:navbar.item icon="layout-grid" :href="route('dashboard')" :current="request()->routeIs('dashboard')" <flux:navbar.item icon="layout-grid" :href="route('dashboard')" :current="request()->routeIs('dashboard')"
wire:navigate> wire:navigate>
{{ __('Apps') }} {{ __('Dashboard') }}
</flux:navbar.item> </flux:navbar.item>
<flux:navbar.item icon="key" :href="route('tokens')" :current="request()->routeIs('tokens')" <flux:navbar.item icon="key" :href="route('tokens')" :current="request()->routeIs('tokens')" wire:navigate>
wire:navigate>
{{ __('Tokens') }} {{ __('Tokens') }}
</flux:navbar.item> </flux:navbar.item>
@can('viewAny', App\Models\User::class) @can('viewAny', App\Models\User::class)
<flux:navbar.item icon="users" :href="route('admin.users')" :current="request()->routeIs('admin.users')" <flux:navbar.item icon="users" :href="route('admin.users')" :current="request()->routeIs('admin.users')"
wire:navigate> wire:navigate>
{{ __('User Management') }} {{ __('User Management') }}
</flux:navbar.item> </flux:navbar.item>
@endcan @endcan
</flux:navbar> </flux:navbar>
@ -66,15 +65,6 @@
<flux:menu.separator /> <flux:menu.separator />
<flux:menu.radio.group>
<flux:modal.trigger name="user-profile">
<flux:menu.item>{{ __('Edit your profile') }}
</flux:menu.item>
</flux:modal.trigger>
</flux:menu.radio.group>
<flux:menu.separator />
<form method="POST" action="{{ route('logout') }}" class="w-full"> <form method="POST" action="{{ route('logout') }}" class="w-full">
@csrf @csrf
<flux:menu.item as="button" type="submit" icon="arrow-right-start-on-rectangle" class="w-full"> <flux:menu.item as="button" type="submit" icon="arrow-right-start-on-rectangle" class="w-full">
@ -100,15 +90,15 @@
:current="request()->routeIs('dashboard')" wire:navigate> :current="request()->routeIs('dashboard')" wire:navigate>
{{ __('Dashboard') }} {{ __('Dashboard') }}
</flux:navlist.item> </flux:navlist.item>
<flux:navlist.item icon="key" :href="route('tokens')" <flux:navlist.item icon="key" :href="route('tokens')" :current="request()->routeIs('tokens')"
:current="request()->routeIs('tokens')" wire:navigate> wire:navigate>
{{ __('Tokens') }} {{ __('Tokens') }}
</flux:navlist.item> </flux:navlist.item>
@can('viewAny', App\Models\User::class) @can('viewAny', App\Models\User::class)
<flux:navlist.item icon="users" :href="route('admin.users')" <flux:navlist.item icon="users" :href="route('admin.users')"
:current="request()->routeIs('admin.users')" wire:navigate> :current="request()->routeIs('admin.users')" wire:navigate>
{{ __('User Management') }} {{ __('User Management') }}
</flux:navlist.item> </flux:navlist.item>
@endcan @endcan
</flux:navlist.group> </flux:navlist.group>
</flux:navlist> </flux:navlist>