Added jobRuns on the job page
Some checks failed
Push image to registry / build-image (push) Failing after 3m47s

This commit is contained in:
2025-03-15 17:44:30 +01:00
parent ad10dcaa0f
commit 070235e011
17 changed files with 330 additions and 18 deletions

View File

@ -21,7 +21,7 @@ class JobController extends Controller
public function show($jobId, Request $request)
{
return Inertia::render('Job', [
'job' => Job::where('id', $jobId)->with('jobInfos')->first(),
'job' => Job::where('id', $jobId)->with('jobInfos', 'jobRuns')->first(),
'error' => $request->input('error'),
]);
}