Pass ID of the checkin/checkout assets in API

This commit is contained in:
Ivan Nieto Vivanco 2022-02-07 13:43:13 -06:00
parent f2b8091b31
commit b4d2b1322f

View file

@ -460,7 +460,7 @@ Route::group(['prefix' => 'v1', 'middleware' => 'api'], function () {
]
)->name('api.asset.audit');
Route::post('checkin',
Route::post('{id}/checkin',
[
Api\AssetsController::class,
'checkin'
@ -474,7 +474,7 @@ Route::group(['prefix' => 'v1', 'middleware' => 'api'], function () {
]
)->name('api.asset.checkinbytag');
Route::post('checkout',
Route::post('{id}/checkout',
[
Api\AssetsController::class,
'checkout'