Good evening I wonder if in Laravel 5.1 there is a way to do autoload, both in Models and Controllers? In Laravel 4 to create an instance of a Model, simply call the Model, like this:
$user = new User();
But from what I noticed in Laravel 5, you need to put the Model path in the controller.