i create crud for violation
This commit is contained in:
@@ -527,7 +527,11 @@ Route::prefix('missions')
|
||||
->controller(ViolationManagementController::class)
|
||||
->group(function () {
|
||||
Route::get('/', 'index')->name('index');
|
||||
Route::post('/', 'store')->name('store');
|
||||
Route::post('/no_process/{violation}','noProcess')->name('noProcess');
|
||||
Route::get('/{violation}', 'show')->name('show');
|
||||
Route::post('/{violation}', 'update')->name('update');
|
||||
Route::delete('/{violation}', 'destroy')->name('destroy');
|
||||
});
|
||||
Route::prefix('report')
|
||||
->name('reports.')
|
||||
|
||||
Reference in New Issue
Block a user