28 lines
699 B
PHP
Raw Normal View History

2023-03-17 15:33:48 +01:00
<?php
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!
|
*/
Route::get('/', function () {
return view('home');
2023-03-17 15:33:48 +01:00
});
2023-03-20 12:04:22 +00:00
Route::middleware(['auth'])->group(function () {
Route::get('/profile', function () {
return view('profile');
});
Route::get('/demo', function () {
return view('demo');
});
});