Home > PHP Framework > Laravel > Laravel builds a paid website project creation

Laravel builds a paid website project creation

little bottle
Release: 2019-04-19 11:51:06
forward
4005 people have browsed it

This article describes using laravel to create a paid website project, which has certain reference value. Interested friends can learn about it.

Install laravel (version 5.8):
This is a global installation, which means you can execute the following command to install it anywhere in the terminal.

composer global require laravel/installer
Copy after login

Create a project:
After installation, go to the folder where you store all your projects (all my projects are in the site folder):

cd site
Copy after login

Then create a new project, the name can be customized.

laravel new edu-system
Copy after login

Start the service:
The project has been created. Now enter the folder of the just created project and execute the start service command:

cd edu-system
php artisan serve
Copy after login

Visit in the browser http://localhost:8000/ You can see the homepage of laravel. Currently, valet is used, so there is no need to configure nginx, which is very convenient and fast.

Related tutorials: laravel Video tutorial

The above is the detailed content of Laravel builds a paid website project creation. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:cnblogs.com
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
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template