Codementor Events

List of the artisan commands, developers are still confused even after release of laravel 6

Published Apr 08, 2020
List of the artisan commands, developers are still confused even after release of laravel 6

Hello friends, long time no see ? hehe, I really apologize for the late post after my last article on multi guard authentication. I was quite busy on multiple projects at work. As we all know Taylor Otwell has released a major version of his masterpiece, Laravel 6 recently. Quite impressive, but even though Laravel has moved to version 6 most of the developers are still confused about some of the artisan commands which are the core of Laravel CLI operations.

php artisan route:clear

This command when fired, will clear your cached routes in web.php and api.php. Next time when laravel is booted it will automatically make a new cached file where routes are defined.

php artisan route:cache

Use this command if you want to explicitly clear the cached routes and make new cached file with updated routes.

php artisan config:clear

Laravel stores all the configuration from App/config directory to a single cached config file at App/bootstrap/cache/config.php.

laravel cached config file is cleared using artisan config:clear command

Whenever you add new config file or change existing config file in App/config directory, laravel will not take latest change by default rather we need to clear the cached config file, php artisan config:clear does the same thing for us.

php artisan config:cache

This command clears the cached config file as mentioned above and recaches the latest configurations into a single file again.

php artisan cache:clear

It will remove all the cache associated with the connection to the database.

php artisan view:clear

In laravel blade files are compiled into normal php files and stored into cache at App/storage/framework/views directory

laravel compiled view cache is cleared using artisan view:clear command

So if you have made any changes into blade files and they are not reflecting in browser, most probably latest changes might have not been cached hence run this command to clear the view caches.

php artisan view:cache

This command serves the same purpose as above but additionally, it auto caches the latest view / blade file changes.

php artisan optimize

Make use of this command extensively as this command will auto clear and recache all the configuration as well as blade files. Most of the time this command is used on production server after doing all the application configurations like creating database, composer install/update etc.

php artisan serve

This is the most common artisan command we use. Why did I actually mentioned this here then ? Here is the reason. We need to make changes to .env file a lot while in development phase because we set variables in key = value pairs and these variables are accessed by configuration files. For example:

App/config/app.php :

'name' => env('APP_NAME', 'Laravel'),

.env file :

APP_NAME=AWESOME_APP

‘name’ variable first attempts to take value from the .env file where the key is APP_NAME and if there is no key as APP_NAME then it will take default values as Laravel.

If we change APP_NAME value in .env file something like APP_NAME=MAGNIFICENT_APP, now ‘name’ variable will still be as AWESOME_APP until we stop the laravel application and re-run using

Conclusion

In this article we discussed about various caching mechanisms laravel provides though artisan commands like route:clear, route:cache, config:clear, config:cache, view:clear etc.

Read eBook of this article at

Discover and read more posts from Decode Web
get started
post commentsBe the first to share your opinion
Henry Gibson
2 years ago

I think the List of artisan commands is a good thing, it’s like a map. People shouldn’t be expected to memorize all of those things, but instead should use that list as a map to easily find where the command they’re looking for is located. Now I have to read https://edubirdie.org/edubirdie-legit/ article before hiring an online writer to assist me in my essay.

Matthew J. Sorenson
4 years ago

The most recent major version release of Laravel is version 7, not version 6.

And no, “most developers” are not confused by artisan commands; please do not speak for others. If any readers are struggling, and would like to invite some Laravel expertise into your project or onto your team, I’m standing by and ready to respond :)

Show more replies