You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Laravel 5.3 script throws exception: BadMethodCallException in Macroable.php line 74: Method controller does not exist.
The problem is connected with calling Route::controller() method in routes.php file.
The text was updated successfully, but these errors were encountered:
Changing Route::controller('/blog', '\Serverfireteam\blog\BlogController');
To Route::resource('/blog', '\Serverfireteam\blog\BlogController');
in routes.php for using blog in Laravel 5.3 fixed the proble
m for me (as far as installation goes) but then, of course, the methods aren't resourceful methods. I've created resourceful methods that reference the other methods and I'm using a different front end anyway for testing.
In Laravel 5.3 script throws exception: BadMethodCallException in Macroable.php line 74: Method controller does not exist.
The problem is connected with calling Route::controller() method in routes.php file.
The text was updated successfully, but these errors were encountered: