I am elbows deep in Laravel 5 and it\'s proving to be quite the bugger with the lack of autoloading. I am running into the weirdest of errors. I can\'t Log anything on my localh
I don't think you have a Log class file in App\Http\Controllers directory. So you must add
Log
App\Http\Controllers
use Log;
if you are using Laravel's logger, or
use Path\To\Your\Log;
for a custom logger.