artisan down
Puts your application in maintenance mode and returns a 503 holding page.
copy
Puts your application in maintenance mode and returns a 503 holding page.
copy
Turns off the maintenance mode and puts your application back online.
copy
This command will cache configuration file to improve application performance.
copy
Flush the application cache.
copy
Clears configuration file cache.
copy
Count method returns a number of records in the queried object.
copy
Seeds the database with records.
copy
Show the information about a command.
copy
Check version of the installed Laravel instance.
copy
Print a full list of Artisan commands with descriptions.
copy
This artisan command will list all routes registered in your application.
copy
Puts the application into maintenance mode.
copy
Depending on Laravel version installed you can add auth functionality to your app using the following commands. Make sure you have a database configured and connected for this step as it will be needed to create a user table.
copy
Creates a new Controller class. Naming convention - use a plural form of the element i.e. "Items" followed by the "Controller".
copy
Creates a new Controller class. "-r" flag creates all default route actions in the new Controller - index, show, create, store, edit, update and destroy. "-m" flag will create the Model file too.
copy
Creates a new Event class.
copy
Creates a new Factory class for a specified Model.
copy
Creates a new Listener class. The --event flag, or -e in short, will include the event to listen for.
copy
Creates a new Mail class. The --markdown flag, or -m in short, will also create a Markdown template for the new email.
copy
Creates a new migration class.
copy
Creates a new Notification class.
copy
Creates a new Seeder class for a specified table.
copy
Runs all database migrations.
copy
Runs a clean database migration. WARNING! This command will wipe the database clean and rebuild all tables from scratch so it should never be run in the production application!
copy
Revert migration one step. By appending a --step=x flag you can define the number of steps to rollback.
copy
Serve command runs the development server for your Laravel project.
copy
Tinker allows you to interact with the Laravel project directly from the command line interface.
copy
Puts the application into active mode.
copy