Adds v5 routing, middleware, home page rendering, team context sharing, project model/table support, and Flux health reporting. Installs Flux in container builds with role-aware s6 services and documents runtime roles.
8 lines
211 B
PHP
8 lines
211 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\V5\HomeController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::middleware('v5.authenticated')->group(function () {
|
|
Route::get('/', HomeController::class)->name('home');
|
|
});
|