coolify/routes/web.php

28 lines
736 B
PHP
Raw Normal View History

2023-03-17 15:33:48 +01:00
<?php
use App\Http\Controllers\HomeController;
2023-03-17 15:33:48 +01:00
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider and all of them will
| be assigned to the "web" middleware group. Make something great!
|
*/
2023-03-20 13:04:22 +01:00
Route::middleware(['auth'])->group(function () {
Route::get('/', [HomeController::class, 'show']);
Route::get('/profile', function () {
return view('profile');
});
Route::get('/demo', function () {
return view('demo');
});
});