我在路线中有这段代码
Route::controller('/orders/{from}/{to}', 'CartController');
链接是这样的
localhost/admin/orders/2020-01-01/2020-01-02
这将打开 2 个日期之间的所有记录
但我有另一个类似这样的链接
localhost/admin/orders/4212
在新选项卡上打开特定行
这 2 个链接属于 1 个功能
叫它
public function getIndex($from,$to){
}
我可以将此参数设为可选吗?在我的 route.php 中有 1 Route::controller('/orders/{from}/{to}', 'CartController');?
尚方宝剑之说
哈士奇WWW
哔哔one