generated from NixLabs/lwaf
Initial commit
This commit is contained in:
10
app/routes.php
Normal file
10
app/routes.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
Flight::route("/", [HomeController::class, "index"]);
|
||||
|
||||
Flight::group(
|
||||
"/admin",
|
||||
function () {
|
||||
Flight::route("/", [AdminController::class, "index"]);
|
||||
},
|
||||
[Auth::middleware()],
|
||||
);
|
||||
Reference in New Issue
Block a user