I have this route: Route::controller(\'/\', \'PearsController\'); Is it possible in Laravel to get the PearsController to load a method from another controller
Route::controller(\'/\', \'PearsController\');
if you were in AbcdController and trying to access method public function test() which exists in OtherController you could just do:
AbcdController
public function test()
OtherController
$getTests = (new OtherController)->test();
This should work in L5.1