Laravel 11, Vuexy Admin 10.3, by admin@koneko.mx
This commit is contained in:
14
modules/Admin/Config/_var.php
Normal file
14
modules/Admin/Config/_var.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
// Variables
|
||||
return [
|
||||
"appName" => "koneko.mx",
|
||||
"appTitle" => "Koneko Soluciones Tecnológicas",
|
||||
"appDescription" => "Koneko Soluciones Tecnológicas",
|
||||
"appLogo" => "../assets/img/logo/koneko-04.png",
|
||||
"appFavicon" => "../assets/img/logo/koneko-04.png",
|
||||
"author" => "arturo@koneko.mx",
|
||||
"creatorName" => "Koneko Soluciones Tecnológicas",
|
||||
"creatorUrl" => "https://koneko.mx",
|
||||
"licenseUrl" => "https://koneko.mx/koneko-admin/licencia",
|
||||
"supportUrl" => "https://koneko.mx/soporte",
|
||||
];
|
36
modules/Admin/Config/custom.php
Normal file
36
modules/Admin/Config/custom.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
// Custom Config
|
||||
// -------------------------------------------------------------------------------------
|
||||
//! IMPORTANT: Make sure you clear the browser local storage In order to see the config changes in the template.
|
||||
//! To clear local storage: (https://www.leadshook.com/help/how-to-clear-local-storage-in-google-chrome-browser/).
|
||||
|
||||
return [
|
||||
'custom' => [
|
||||
'myLayout' => 'horizontal', // Options[String]: vertical(default), horizontal
|
||||
'myTheme' => 'theme-semi-dark', // Options[String]: theme-default(default), theme-bordered, theme-semi-dark
|
||||
'myStyle' => 'light', // Options[String]: light(default), dark & system mode
|
||||
'myRTLSupport' => false, // options[Boolean]: true(default), false // To provide RTLSupport or not
|
||||
'myRTLMode' => false, // options[Boolean]: false(default), true // To set layout to RTL layout (myRTLSupport must be true for rtl mode)
|
||||
'hasCustomizer' => true, // options[Boolean]: true(default), false // Display customizer or not THIS WILL REMOVE INCLUDED JS FILE. SO LOCAL STORAGE WON'T WORK
|
||||
'displayCustomizer' => true, // options[Boolean]: true(default), false // Display customizer UI or not, THIS WON'T REMOVE INCLUDED JS FILE. SO LOCAL STORAGE WILL WORK
|
||||
'contentLayout' => 'compact', // options[String]: 'compact', 'wide' (compact=container-xxl, wide=container-fluid)
|
||||
'navbarType' => 'static', // options[String]: 'sticky', 'static', 'hidden' (Only for vertical Layout)
|
||||
'footerFixed' => false, // options[Boolean]: false(default), true // Footer Fixed
|
||||
'menuFixed' => false, // options[Boolean]: true(default), false // Layout(menu) Fixed (Only for vertical Layout)
|
||||
'menuCollapsed' => true, // options[Boolean]: false(default), true // Show menu collapsed, (Only for vertical Layout)
|
||||
'headerType' => 'static', // options[String]: 'static', 'fixed' (for horizontal layout only)
|
||||
'showDropdownOnHover' => false, // true, false (for horizontal layout only)
|
||||
'authViewMode' => 'cover', // Options[String]: cover(default), basic
|
||||
'maxQuickLinks' => 8, // options[Integer]: 6(default), 8, 10
|
||||
'customizerControls' => [
|
||||
//'rtl',
|
||||
'style',
|
||||
'headerType',
|
||||
'contentLayout',
|
||||
'layoutCollapsed',
|
||||
'layoutNavbarOptions',
|
||||
'themes',
|
||||
], // To show/hide customizer options
|
||||
],
|
||||
];
|
Reference in New Issue
Block a user