add metrics

This commit is contained in:
ludo
2024-01-30 23:24:00 +01:00
parent c0c4146c9c
commit 79af996c63
12 changed files with 226 additions and 70 deletions

View File

@@ -0,0 +1,10 @@
<?php
Route::prefix('PriceListValues')->name('PriceListValues.')->group(function () {
Route::get('', 'PriceListValueController@index')->name('index');
Route::get('create', 'PriceListValueController@create')->name('create');
Route::delete('destroy/{id?}', 'PriceListValueController@destroy')->name('destroy');
Route::post('store', 'PriceListValueController@store')->name('store');
Route::get('edit/{id}', 'PriceListValueController@edit')->name('edit');
Route::get('addPrice/{index?}', 'PriceListValueController@addPrice')->name('addPrice');
});