Hi, i create new module according the documentation on youtr website
php artisan module:make Blog
php artisan module:install blog 1
Then i past de settings in the Blog's module.json
{
"name": "Blog",
"alias": "blog",
"description": "",
"version": "1.0.0",
"category": "payment-gateway",
"keywords": [],
"active": 1,
"order": 0,
"providers": [
"Modules\\Blog\\Providers\\BlogServiceProvider"
],
"aliases": {},
"files": [
"start.php"
],
"requires": [],
"settings": [
{
"type": "textGroup",
"name": "url",
"title": "arastta::general.url",
"icon": "globe",
"attributes": {
"required": "required"
}
},
{
"type": "textGroup",
"name": "username",
"title": "arastta::general.username",
"icon": "user",
"attributes": {
"required": "required"
}
},
{
"type": "passwordGroup",
"name": "password",
"title": "arastta::general.password",
"icon": "key",
"attributes": {
"required": "required"
}
}
]
}
Acording your website the menu must be visible now. Well it is not
I see in the website there is an update
but when i update i'll get an error message
What can this bee?