repo_pattern/routes/web.php

20 lines
493 B
PHP
Raw Permalink Normal View History

2024-02-13 06:43:14 +00: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('welcome');
});
2024-02-13 07:26:11 +00:00