creatcrud for loglist

This commit is contained in:
2025-03-09 14:29:36 +03:30
parent 96edaaddb4
commit eb75537d9b
5 changed files with 115 additions and 2 deletions

View File

@@ -323,6 +323,11 @@ Route::prefix('log_list')
->controller(LogListController::class)
->group(function () {
Route::get('/', 'index')->name('index');
Route::get('/list', 'list')->name('list');
Route::post('/', 'store')->name('store');
Route::get('/{logList}', 'show')->name('show');
Route::post('/{logList}', 'update')->name('update');
Route::delete('/{logList}', 'destroy')->name('destroy');
});
Route::prefix('safety_and_privacy')