my-website/routes/web.php

19 lines
493 B
PHP
Raw Normal View History

2024-02-15 19:19:47 +02: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 () {
2024-02-15 20:31:36 +02:00
return view('homepage');
2024-02-15 19:19:47 +02:00
});