- php artisan controller:make ControllerName – this code will generate boilerplate code for a controller
- php artisan list – this command will list available artisan commands
- php artisan routes – this command will list all the registered routes
- php artisan down – this command will activate the maintenance mode and your website/application will display a custom message and deny access to other
- php artisan up – this command will disable the maintenance mode of your website/application
- php artisan test – this command will run PHPUnit tests
- php artisan migrate – this command runs the database’s migrations
- php artisan view: publish – this command publishes a package’s views to the application
- php artisan db:seed – this command seeds records to the database
- php artisan config:publish – this command publishes a package’s configuration to the application
Recent Comments