You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have installed outl1ne/nova-settings "^5.2" into Laravel 10 / nova 4.27 app and with default config
file config/nova-settings.php :
<?php
return [
/**
* Set a name for the settings table
*/
'table' => 'nova_settings',
/**
* URL path of settings page
*/
'base_path' => 'nova-settings',
/**
* 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' => \Outl1ne\NovaSettings\Models\Settings::class,
],
/**
* Show the sidebar menu
*/
'show_in_sidebar' => true
];
In NovaServiceProvider class I defined settings itens as :
I have installed outl1ne/nova-settings "^5.2" into Laravel 10 / nova 4.27 app and with default config
file config/nova-settings.php :
In NovaServiceProvider class I defined settings itens as :
I left 3rd parameter as empty (default 'general' value).
I see new menu item :
https://img001.prntscr.com/file/img001/pNaA_ELwQ-inT8HKEPWgHA.png
but clicking on the menu item I got 404 error and I can not enter settings page.
I run commands :
The same result.
In php artisan route:list command I see :
What did I miss in my settings ?
The text was updated successfully, but these errors were encountered: