generated from NixLabs/lwaf
11 lines
207 B
PHP
11 lines
207 B
PHP
<?php
|
|
Flight::route("/", [HomeController::class, "index"]);
|
|
|
|
Flight::group(
|
|
"/admin",
|
|
function () {
|
|
Flight::route("/", [AdminController::class, "index"]);
|
|
},
|
|
[Auth::middleware()],
|
|
);
|