2023-03-23 21:50:31 +01:00

34 lines
832 B
PHP

<?php
use Illuminate\Support\Facades\Route;
use App\Models\Device;
/*
|--------------------------------------------------------------------------
| 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');
return view('deviceList', [
//'devices' => Device::all()
'devices' => Device::all()
]);
});
Route::get('/devices/{id}', function ($id) {
return view('deviceDetail', [
'device' => Device::find($id)
]);
});