How-to articles, tricks, and solutions about LARAVEL-ARTISAN

Could not open input file: artisan

It looks like you are trying to run the artisan command but are getting an error saying that the input file could not be found.

Fatal error: Class 'Illuminate\Foundation\Application' not found

This error message indicates that the Laravel framework is unable to find the Application class from the Illuminate\Foundation namespace.

Laravel 5 Clear Views Cache

To clear the cache for your views in Laravel 5, you can use the view:clear Artisan command.

Laravel 5 How to switch from Production mode

To switch from production mode to development mode in Laravel 5, you can use the php artisan down command.

ReflectionException: Class ClassName does not exist - Laravel

This error message indicates that Laravel is trying to use a class that it can't find.

What are the Differences Between "php artisan dump-autoload" and "composer dump-autoload"?

php artisan dump-autoload is a command that is part of the Artisan command-line interface included with Laravel.