add nested array validation to form requests

This commit is contained in:
2024-11-09 11:36:16 +03:30
parent fbb4db5e60
commit 117bf0269e
5 changed files with 33 additions and 3 deletions

View File

@@ -41,6 +41,7 @@ Route::prefix('azmayesh_types')
->controller(AzmayeshTypeController::class)
->group(function () {
Route::get('/', 'index')->name('index');
Route::get('/list', 'list')->name('list');
Route::get('/fields/{azmayeshType}', 'fields')->name('fields');
Route::get('/{azmayeshType}', 'show')->name('show');
Route::post('/store', 'store')->name('store');