Answers for "how use same method in another class in laravel"

PHP
0

how use same method in another class in laravel

public $doctorController;

public function __construct(){
        $this->doctorController = new DoctorController();
}

public function index (Request $request){
       return $this->doctorController->index($request); 
}
Posted by: Guest on August-09-2021

Code answers related to "how use same method in another class in laravel"

Browse Popular Code Answers by Language