Fix on addresses

This commit is contained in:
ludo
2023-11-13 00:02:21 +01:00
parent 4ce3d528dd
commit 9f90f983ab
29 changed files with 660 additions and 447 deletions

View File

@@ -6,5 +6,5 @@ Route::prefix('Clients')->name('Customers.')->group(function () {
Route::get('modalProfile/{id?}', 'CustomerController@modalProfile')->name('modalProfile');
Route::get('edit', 'CustomerController@edit')->name('edit');
Route::post('storeProfileAjax', 'CustomerController@storeProfileAjax')->name('storeProfileAjax');
Route::post('storeProfile', 'CustomerController@storeProfile')->name('storeProfile');
Route::post('store', 'CustomerController@store')->name('store');
});