partial update create modal list dealers

This commit is contained in:
2025-06-05 12:05:20 +07:00
parent ff498cd98f
commit ce0a4718e0
12 changed files with 303 additions and 31 deletions

View File

@@ -211,6 +211,8 @@ Route::group(['middleware' => 'auth'], function() {
Route::get('/', 'index')->name('products.index');
Route::get('create', 'create')->name('products.create');
Route::post('/', 'store')->name('products.store');
Route::get('all','all_products')->name('products.all');
Route::get('dealers-stock')->name('products.dealers_stock');
Route::get('{product}', 'show')->name('products.show');
Route::get('{product}/edit', 'edit')->name('products.edit');
Route::put('{product}', 'update')->name('products.update');
@@ -233,6 +235,7 @@ Route::group(['middleware' => 'auth'], function() {
Route::prefix('opnames')->controller(OpnamesController::class)->group(function (){
Route::get('/','index')->name('opnames.index');
Route::get('create','create')->name('opnames.create');
Route::post('/','store')->name('opnames.store');
});
});
});