Home  >  Article  >  Backend Development  >  Laraverl implements creating command line

Laraverl implements creating command line

小云云
小云云Original
2018-03-26 11:31:491455browse

This article mainly shares with you how to create a command line in Laraverl. I hope it can help you.

1. Create project: composer create-project --prefer-dist laravel/laravel blog

2. Command must be in laravelProjectExecute under the root directory, otherwise "Could not open input file: artisan"

3. Display Lavarel version php artisan -- version

4. List all commandsphp artisan list

5.Create app PHP file under the /Modules/User/Model folder php artisan make:model Modules/User/Model/User

6. Create Module module php artisan make:module blog

7. Create the controller under Module php artisan make:module:controller blog PostController

8. Create the table under Migration php artisan make:module:migration blog create_posts_table

9. Create the migration database table php artisan module:migrate

Related recommendations:

PHP command line execution example

How to implement HTML-like command line interface

PHP command line

The above is the detailed content of Laraverl implements creating command line. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn