Completamento della conversione del template

This commit is contained in:
2023-10-05 14:24:34 +02:00
parent 2fe5027f8e
commit c0ce480235
12 changed files with 113 additions and 66 deletions

View File

@@ -31,7 +31,7 @@ return [
*/
'use_ico_only' => false,
'use_full_favicon' => true,
'use_full_favicon' => false,
/*
|--------------------------------------------------------------------------
@@ -314,46 +314,51 @@ return [
[
'text' => 'Gestione Economica',
'url' => '#',
'icon' => 'far fa-fw fa-money-bill', //<i class="fa-solid fa-money-bill"></i>
'icon' => 'fas fa-fw fa-money-bill', //<i class="fa-solid fa-money-bill"></i>
'submenu' => [
[
'text' => 'Lista movimenti',
'route' => 'movimenti',
'icon' => 'fas fa-fw fa-list-check'
],
[ 'text' => 'Liste',
'url' => '#',
'icon' => 'fas fa-fw fa-sync',
'icon' => 'fas fa-fw fa-gears',
'submenu' => [
[
'text' => 'Categorie',
'route' => 'categorie',
'icon' => 'fas fa-fw fa-wine-bottle'
],
[
'text' => 'Tags',
'route' => 'tags',
'icon' => 'fas fa-fw fa-tags'
],
]
],
[ 'text' => 'Reports',
'url' => '#',
'icon' => 'fas fa-fw fa-sync',
'icon' => 'fas fa-fw fa-file',
'submenu' => [
[
'text' => 'Report Movimenti',
'text' => 'Report movimenti',
'route' => 'resoconto',
'icon' => 'fas fa-fw fa-piggy-bank',
],
[
'text' => 'Bilancio annuale',
'route' => 'budget',
'icon' => 'fas fa-fw fa-scale-balanced'
],
]
],
[
'text' => 'Import/Export',
'url' => '#',
'icon' => 'fas fa-fw fa-sync',
'icon' => 'fas fa-fw fa-file-arrow-down',
'submenu' => [
[
'text' => 'Esporta tutti i movimenti',
@@ -385,13 +390,13 @@ return [
],
[
'text' => 'Progetti',
'url' => '#',
'icon' => 'fas fa-fw fa-todo',
'route' => 'progetti',
'icon' => 'fas fa-fw fa-diagram-project',
],
[
'text' => 'Attività',
'url' => '#',
'icon' => 'fas fa-fw fa-todo',
'route' => 'tasks',
'icon' => 'fas fa-fw fa-circle-check',
],
['header' => 'GESTIONE PIM'],
[
@@ -401,16 +406,28 @@ return [
'submenu' => [
[
'text' => 'Nuovo Contatto',
'url' => '/admin/contatti/new',
'route' => 'newContact',
'icon' => 'fas fa-fw fa-plus',
],
[
'text' => 'Rubrica',
'route' => 'contatti',
'icon' => 'fas fa-fw fa-mobile',
],
],
],
[
'text' => 'Appuntamenti',
'url' => '/admin/test/calendar',
'route' => 'calendario',
'icon' => 'fas fa-fw fa-calendar',
],
['header' => 'AMMINISTRAZIONE'],
[
'text' => 'Utenti',
'url' => '/admin/users/new',
'icon' => 'fas fa-fw fa-user',
'can' => ['amministrazione']
],
],
@@ -550,6 +567,17 @@ return [
],
],
'FontAwesome' =>[
'active' => true,
'files' =>[
[
'type' => 'css',
'asset' => false,
'location' => '//cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css',
],
],
],
],
/*