new: allow to delete seuil lines in price-list's pice modal

This commit is contained in:
Valentin Lab
2025-10-15 13:17:54 +02:00
parent 67e4346c68
commit b7e3eefed6
5 changed files with 126 additions and 15 deletions

View File

@@ -71,7 +71,10 @@ class PriceListValueController extends Controller
public function addPrice($index)
{
$data['index'] = $index;
$data = [
'index' => $index,
'taxes' => Taxes::getOptions(),
];
return view('Admin.Shop.PriceListValues.partials.row_price', $data);
}