Restore missing methods and fix silly bugs.

This commit is contained in:
James Cole
2023-10-24 18:32:24 +02:00
parent 64b9234207
commit 32a36bbb12
16 changed files with 397 additions and 273 deletions

View File

@@ -342,7 +342,7 @@ Route::group(
Route::post('store', ['uses' => 'CreateController@store', 'as' => 'store']);
Route::post('update/{currency}', ['uses' => 'EditController@update', 'as' => 'update']);
Route::post('destroy/{currency}', ['uses' => 'EditController@destroy', 'as' => 'destroy']);
Route::post('destroy/{currency}', ['uses' => 'DeleteController@destroy', 'as' => 'destroy']);
}
);