mejoras en la gestión de proyectos y documentos: se añaden nuevos campos y validaciones para optimizar la organización y el seguimiento de los mismos.
This commit is contained in:
39
resources/views/companies/layout.blade.php
Normal file
39
resources/views/companies/layout.blade.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<x-layouts.app :title="__('Companies')" :showSidebar={{ $showSidebar }}>
|
||||
|
||||
@if(session('success'))
|
||||
<div class="mb-4 p-4 bg-green-100 text-green-700 rounded-lg">
|
||||
{{ session('success') }}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@yield('company-content')
|
||||
|
||||
|
||||
<!-- Sidebar menu -->
|
||||
@push('sidebar-menu')
|
||||
<flux:navlist variant="outline">
|
||||
<!-- Sección de Usuarios -->
|
||||
<flux:navlist.group :heading="__('Empresas')">
|
||||
<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>
|
||||
|
||||
@endpush
|
||||
|
||||
</x-layouts.app>
|
||||
Reference in New Issue
Block a user