I recently upgrade Laravel 5.3 to Laravel 5.4. I had read the upgrade guide provided by the laravel, and everything looks good. Until I try to run the Laravel Tinker and it\
Edit your app/Console/Kernel.php, then modify the $commands property with this:
app/Console/Kernel.php
$commands
protected $commands = [ // \Laravel\Tinker\Console\TinkerCommand::class, ];
then in console, make a
composer dump-autoload