我定義路線的控制是這樣的:Laravel 5:獲得路線參數在控制器的構造
/model/{id}/view
/model/something/{id}/edit
我需要得到id參數在該控制器的構造器。例如:
class ArtController extends Controller {
public function __construct(Request $request){
//dd($this->route('id')); //Doesn't work
//dd($request->segments()[1]); //this works for the first route but not the second
}
}
你怎麼能得到在Laravel一個控制器的構造函數的參數id
?
不應該'$這個 - >路線( 'ID')'是'$ request-> route('id')'? –