我希望第二个参数作为可选参数。
路线:
Route::get('/offers/preview/{id}/{string?}', 'OfferController@preview');
控制器:
public function preview($id, $string)
{
// some code
}
致电"提供/预览/ 101 /测试"看起来不错。
通过调用" offers / preview / 101"
出错ErrorException in OfferController.php line 53:
Missing argument 2 for App\Http\Controllers\OfferController::preview()
提前谢谢。
答案 0 :(得分:1)