There are several default artisan commands that come with laravel, the common ones are php artisan serve,php artisan migrate, php artisan make:migr...
For further actions, you may consider blocking this person and/or reporting abuse
I love artisan commands. You can use PHP artisan create table command to quickly create table for database. Artisan commands has made coding for laravel developers easy.
Here we are in 2020 and your gif in 2017 was already practicing social distancing. Clearly you knew what would come.
Nice post btw! Helped me a lot to get into creating commands :)
I have been trying to find this out. Maybe you can help me. I was wanting to know do you have to remake these commands for different projects or new projects that you make?
Yeah you have to. If you check the list of artisan commands using
php artisan list
, the custom command you make forproject A
won't be visible inproject B
.In other words, The commands are project specific