Files
opensem/routes/Shop/Customers.php
Ludovic CANDELLIER 9698ba54d0 fixes
2022-12-22 01:09:11 +01:00

9 lines
420 B
PHP

<?php
Route::prefix('Clients')->name('Customers.')->group(function () {
Route::get('show/{id}', 'CustomerController@show')->name('show');
Route::get('profile/{id?}', 'CustomerController@profile')->name('profile');
Route::get('modalProfile/{id?}', 'CustomerController@modalProfile')->name('modalProfile');
Route::post('storeProfileAjax', 'CustomerController@storeProfileAjax')->name('storeProfile');
});