Langsung ke konten utama

Postingan

Menampilkan postingan dari Mei, 2019

List of 16 Command Line Laravel Artisan

Laravel has awesome set of artisan commands, probably the most often used are  make:xxx  – like  make:model  or  make:migration  etc. But do you know all 16 of them? And, moreover, do you know their parameters which may help to make the code even quicker? 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 notificatio...