Neuaufbau des Repositories

This commit is contained in:
2026-04-13 14:01:19 +02:00
parent 4a7638d5e9
commit 35b5f39843
14 changed files with 494 additions and 13 deletions
+6
View File
@@ -32,6 +32,12 @@ class AppServiceProvider extends ServiceProvider
// You should restrict this later!
return true;
});
Gate::define('manage-users', function (User $user) {
// Temporarily allowing all authenticated users while testing.
// You should restrict this later by returning $user->isAdmin();
return true;
});
}
/**