/packages/vendor-name/project-name/
+ ├── app.json
Add user menu in your app. You must be setting config file app.json
"user-menu": [
{
"name": "document",
"link": "larecipe.index",
"target": "_blank"
}
],
link: link menu to page route name larecipe.index
menu google
├── facebook
│ │ ├── twitter
"user-menu": [
{
"name": "google",
"link": "http://google.com",
"target": "_blank",
+ "submenu": [
{
"name": "facebook",
"link": "http://facebook.com",
"target": "_blank",
+ "submenu": [
{
"name": "twitter",
"link": "http://twitter.com",
"target": "_blank"
}
]
}
]
}
],
link: link menu to external menu url.
To prevent error appears on the website, disabling or uninstalling app on the Manage. RVsitebuilder will automatically hide your app's menu, disable all app’s routes and shows 404 error page.
Open app.json file in your app and setting config "admin-menu". You must create a "your-file.blade.php" file inside 'resources/views/your-file.blade.php' and create a route name to a blade file using the link.
"admin-menu":[
{
"name":"My app menu",
"link":"your.route.name"
}
],