What is PHP artisan. List out some artisan commands ?

devquora
devquora

Posted On: Apr 19, 2024

 

    2 Answers Written

  •  devquora
    Answered by Anil Saini

    Artisan is a command-line interface in Laravel Framework for executing and performing specific tasks in Framework.

    Below is the list of some important Php artisan Commands.

    • php artisan serve: Used to start Laravel server.
    • php artisan make: used to make model, controller, view, migration, etc. in Laravel
    • php artisan tinker: used to start REPL console for Laravel.
    • php artisan –version: Helps to check the version of the framework.
    • php artisan schedule run: used to run scheduled jobs in Laravel.
  •  devquora
    Answered by swetha gurusamyvery usefull

Related Questions

Please Login or Register to leave a response.

Related Questions

Laravel Interview Questions

What is Laravel?

Laravel is a free open source "PHP framework" based on the MVC design pattern. It is created by Taylor Otwell...