ConsultancyProject1_Auslast.../scraper/routes/web.php

19 lines
492 B
PHP
Raw Normal View History

2024-03-23 10:05:14 +01:00
<?php
use Illuminate\Support\Facades\Route;
2024-05-07 21:31:03 +02:00
/*
|--------------------------------------------------------------------------
| 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!
|
*/
2024-03-23 10:05:14 +01:00
Route::get('/', function () {
2024-05-07 21:31:03 +02:00
return view('welcome');
2024-03-23 10:05:14 +01:00
});