add backup file and autobackup code, partial update mutations receive on transation page

This commit is contained in:
2025-06-12 18:09:13 +07:00
parent 58578532cc
commit b04b8f88cb
9 changed files with 1276 additions and 21 deletions

View File

@@ -246,6 +246,8 @@ Route::group(['middleware' => 'auth'], function() {
Route::get('create', 'create')->name('create');
Route::post('/', 'store')->name('store');
Route::get('get-product-stock', 'getProductStock')->name('get-product-stock');
Route::get('get-pending-mutations', 'getPendingMutations')->name('get-pending-mutations');
Route::get('{mutation}/get-detail', 'getDetail')->name('get-detail');
Route::get('{mutation}', 'show')->name('show');
Route::get('{mutation}/edit', 'edit')->name('edit');
Route::get('{mutation}/details', 'getDetails')->name('details');