From 250f6b6fb819671fae3e8256ee3e46c6130e0392 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 18 Nov 2021 14:37:12 -0800 Subject: [PATCH] Fixed v6 bug 500 server error when trying to checkin [sc-17711] Signed-off-by: snipe --- routes/web/components.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web/components.php b/routes/web/components.php index 2cff63e65..e0cb04d05 100644 --- a/routes/web/components.php +++ b/routes/web/components.php @@ -23,7 +23,7 @@ Route::group(['prefix' => 'components', 'middleware' => ['auth']], function () { Route::post( '{componentID}/checkin/{backto?}', [Components\ComponentCheckinController::class, 'store'] - )->name('checkout/component'); + )->name('component.checkin.save'); });