This commit is contained in:
Ludovic CANDELLIER
2021-04-06 22:20:44 +02:00
parent 1a7f8fa3f6
commit 4c4405d067
9 changed files with 50 additions and 99 deletions

View File

@@ -60,4 +60,9 @@ class PriceGenericController extends Controller
{
return PriceGenerics::destroy($id);
}
public function getPrice($id) {
$data['generic'] = PriceGenerics::getFull($id);
return view('Shop.Admin.PriceGenerics.partials.table-prices', $data);
}
}