new functionality: Add project coding configuration feature for projects
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
2025-12-09 23:02:35 +01:00
parent 7b00887372
commit e42ce8b092
13 changed files with 1169 additions and 28 deletions

View File

@@ -134,6 +134,45 @@
{{ __('Create User') }}
</flux:navlist.item>
</flux:navlist.group>
<flux:separator />
<!-- Sección de Empresas -->
<flux:navlist.group :heading="__('Empresas')" expandable>
<flux:navlist.item
icon="building-office-2"
:href="route('companies.index')"
wire:navigate
>
{{ __('List companies') }}
</flux:navlist.item>
<flux:navlist.item
icon="building-office"
:href="route('companies.create')"
wire:navigate
>
{{ __('Create new company') }}
</flux:navlist.item>
</flux:navlist.group>
<flux:separator />
<flux:navlist.group :heading="__('Projects')" expandable>
<flux:navlist.item
icon="folder"
:href="route('projects.index')"
wire:navigate
>
{{ __('List Projects') }}
</flux:navlist.item>
<flux:navlist.item
icon="plus"
:href="route('projects.create')"
wire:navigate
>
{{ __('Create Project') }}
</flux:navlist.item>
</flux:navlist.group>
</flux:navlist>
@endpush