Files
DatBrowser/routes/web.php

13 lines
285 B
PHP

<?php
use App\Http\Controllers\JobController;
use App\Models\Job;
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Route::get('/', function () {
return Inertia::render('Home');
})->name('home');
Route::resource('jobs', JobController::class)->only(['show', 'update']);