We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a032436 commit 3b34e50Copy full SHA for 3b34e50
mago.yaml
@@ -48,3 +48,5 @@ analyzer:
48
check-throws: false
49
allow-possibly-undefined-array-keys: true
50
perform-heuristic-checks: true
51
+ ignore:
52
+ - missing-override-attribute
src/ServiceProvider.php
@@ -94,9 +94,11 @@ private function configureNavigation(): void
94
{
95
Nav::extend(static function (Navigation $nav): void {
96
$nav
97
- ->content('Backups')
98
- ->can('manage backups')
99
- ->section('Tools')
+ ->findOrCreate(
+ section: 'Tools',
+ name: 'Backups',
100
+ )
101
+ ->can(ability: 'manage backups')
102
->route('itiden.backup.index')
103
->icon('save');
104
});
0 commit comments