create panel for azmayesh type crud

This commit is contained in:
2024-11-09 10:52:57 +03:30
parent 6eb7d6c55e
commit fbb4db5e60
5 changed files with 134 additions and 3 deletions

View File

@@ -42,6 +42,10 @@ Route::prefix('azmayesh_types')
->group(function () {
Route::get('/', 'index')->name('index');
Route::get('/fields/{azmayeshType}', 'fields')->name('fields');
Route::get('/{azmayeshType}', 'show')->name('show');
Route::post('/store', 'store')->name('store');
Route::post('/update/{azmayeshType}', 'update')->name('update');
Route::post('/delete/{azmayeshType}', 'destroy')->name('delete');
});
Route::prefix('azmayesh_samples')