Posts

Showing posts with the label Artisan

Laravel artisan commands list

Image
Laravel has awesome set of artisan commands, probably the most often used are make:xxx – like make:model or make:migration etc. First, there is a command php artisan list which gives us all the commands, like this:   make:auth              Scaffold basic login and registration views and routes   make:command     Create a new Artisan command   make:controller     Create a new controller class   make:event            Create a new event class   make:job                Create a new job class   make:listener         Create a new event listener class   make:mail              Create a new email class   make:middleware  Create a new middleware class   make:migration     Create a new migration file   make:model           Create a new Eloquent model class   make:notification  Create a new notification class   make:policy           Create a new policy class   make:provider       Create a new service provider class   make:request         Create a new form request class   make