abschlussprojekt-device-man.../device-app/routes/web.php
2023-03-23 12:25:56 +01:00

28 lines
677 B
PHP

<?php
use GuzzleHttp\Psr7\Request;
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');
});
Route::get('/devices', function () {
return view('deviceList');
});
Route::get('/devices/{id}', function ($id) {
return view('deviceDetail');
});