📅  最后修改于: 2022-03-11 14:53:39.736000             🧑  作者: Mango
public $doctorController;
public function __construct(){
$this->doctorController = new DoctorController();
}
public function index (Request $request){
return $this->doctorController->index($request);
}