Add mount update and deletion services, add MountController@update and MountController@delete

This commit is contained in:
Matthew Penner 2020-05-20 19:35:30 -06:00
parent 77150b2551
commit 0db7debb46
6 changed files with 154 additions and 11 deletions

View file

@ -178,6 +178,7 @@ Route::group(['prefix' => 'mounts'], function () {
Route::get('/view/{mount}', 'MountController@view')->name('admin.mounts.view');
Route::post('/', 'MountController@create');
Route::patch('/view/{mount}', 'MountController@update');
});
/*