InterviewSolution
Saved Bookmarks
| 1. |
Explain PHP artisan in detail. |
|
Answer» PHP artisan is a command based (CLI) tool in laravel, It provides a good number of commands that can help us to build an application faster. Artisan commands are available by default for all important operation like database seeding, migration, CACHE CONFIGURATION to clearing cache, SETTING application NAMESPACE, event and key generation, queueing, running scheduled tasks, etc. To check available artisan command list, we can use the command : php artisan list Some important Laravel artisan commands are:
To create a new (custom) php artisan command:
|
|