File: /home/mocapict-106/mocapictures.kr/config/nova-settings.php
<?php
return [
/**
* Set a name for the settings table
*/
'table' => 'nova_configs',
/**
* URL path of settings page
*/
'base_path' => 'nova-configs',
/**
* Reload the entire page on save. Useful when updating any Nova UI related settings.
*/
'reload_page_on_save' => false,
/**
* We need to know which eloquent model should be used to retrieve your permissions.
* Of course, it is often just the default model but you may use whatever you like.
*
* The model you want to use as a model needs to extend the original model.
*/
'models' => [
'settings' => \App\Models\NovaConfig::class,
],
/**
* Show the sidebar menu
*/
'show_in_sidebar' => true
];