16 lines
288 B
PHP
16 lines
288 B
PHP
<?php
|
|
|
|
use App\Models\Job;
|
|
use Illuminate\Support\Facades\Route;
|
|
use Inertia\Inertia;
|
|
|
|
Route::get('/', function () {
|
|
return Inertia::render('Home');
|
|
});
|
|
|
|
Route::get("/job/{jobId}", function ($jobId) {
|
|
return Inertia::render('Job', [
|
|
'job' => Job::find($jobId)
|
|
]);
|
|
});
|