Creato evento con data e ora (start-end) per google-calendar

This commit is contained in:
2023-10-24 15:23:49 +02:00
parent 908d8f9328
commit a819ef01ff
7 changed files with 114 additions and 133 deletions

View File

@@ -434,7 +434,13 @@ return [
'text' => 'Appuntamenti',
'route' => 'calendario',
'icon' => 'fas fa-fw fa-calendar',
// 'can' => 'appuntamenti',
'can' => ['appuntamenti'],
],
[
'text' => 'Meeting Room',
'route' => 'meeting',
'icon' => 'fas fa-fw fa-file-video',
'can' => ['meetingroom']
],
['header' => 'CONSUMI'],
[
@@ -450,13 +456,8 @@ return [
'icon' => 'fas fa-fw fa-user',
'can' => ['amministrazione']
],
['header' => 'UTILI'],
[
'text' => 'Meeting Room',
'route' => 'meeting',
'icon' => 'fas fa-fw fa-file-video',
'can' => ['meetingroom']
],
],
@@ -525,6 +526,37 @@ return [
],
],
],
'DateRangePicker' => [
'active' => false,
'files' => [
[
'type' => 'js',
'asset' => false,
'location' => '//cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.min.js',
],
[
'type' => 'css',
'asset' => false,
'location' => '//cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.css',
],
],
],
'JqueryUi' =>[
'active' => false,
'files' =>[
[
'type' => 'js',
'asset' => false,
'location' => '//code.jquery.com/ui/1.13.1/jquery-ui.js',
/// https://code.jquery.com/ui/1.13.1/jquery-ui.js
],
[
'type' => 'css',
'asset' => false,
'location' => '//code.jquery.com/ui/1.13.1/themes/smoothness/jquery-ui.css',
],
],
],
'Select2' => [
'active' => true,
'files' => [
@@ -606,6 +638,16 @@ return [
],
],
],
'MomentJs' =>[
'active' => false,
'files' =>[
[
'type' => 'js',
'asset' => false,
'location' => '//cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.4/moment-with-locales.min.js',
],
],
],
],