Laraverl implements creating command line

小云云
Release: 2023-03-22 10:08:02
Original
1417 people have browsed it

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!