fix: make the address appear when added

This commit is contained in:
Valentin Lab
2025-10-04 11:30:24 +02:00
parent a2da0a8a12
commit e69487f73e
4 changed files with 155 additions and 26 deletions

View File

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