website/routes/web.php

21 lines
604 B
PHP
Raw Normal View History

2020-10-29 21:41:19 +01:00
<?php
use Illuminate\Support\Facades\Route;
2020-11-09 23:40:57 +01:00
use App\Http\Controllers\HomeController;
2020-10-29 21:41:19 +01:00
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
2020-11-09 23:40:57 +01:00
Route::get('/', [HomeController::class, 'index'])->name('root.index');