我们有SNIPE IT资产管理,使用(\ Com \ Tecnick \ Barcode \ Barcode())QRCODE Generator。它完美地工作并产生
网址:http://xxxxx/xxxx/public/hardware/29/view
现在我们要在该URL中添加新参数,如下所示
答案 0 :(得分:1)
假设您使用模型和模型绑定正确设计Laravel应用程序,您可以执行以下操作。
你需要一条路线:
// Assuming you have a model called Hardware.
$router->get('hardware/{hardware}/view', function (Hardware $hardware) {
return Barcode::generate('...'); // This is where you'd call the Barcode library you're using
});