Laravel5 framework learning-Introduction to Laravel and new projects. laravel creates a new project. Laravel5 framework learning for Laravel beginners and new projects, laravel new project this series of articles is the notes of the Getting Started series video in laracasts.com, I made some modifications, you can refer to this Laravel 5 framework to learn how to get started with Laravel and create a project.
This series of articles is the notes of the Getting Started series of videos in laracasts.com. I have made some modifications and can refer to this series of articles to learn about Laravel 5. The original video author is Jeffrey Way. thank you. I am using a Mac system, but for Mac and Windows users, we recommend using virtual machines to install linux (server edition) and then using shared folders for development. All command line commands should be executed in the virtual machine. phpstorm is recommended for modifying files on the host machine.
What is Laravl?
Laravel is a simple and elegant PHP Web development Framework ). In the world (excluding China), PHP framework shares more than 40%.
Set system
Check whether the composer is installed. if not, refer to the composer Chinese network and modify the library to the Chinese source.
The code is as follows:
Composer -- version
# Output
Composer version 1.0.0-alpha9 2014-12-07 17:15:20
Create a Laravel project
The code is as follows:
Cd/shared folder mounted in virtual machine
Composer create-project laravel/laravel learning-laravel-5 -- prefer-dist
# Waiting
Test item
The code is as follows:
Cd learning-laravel-5/
# X. x indicates the virtual machine address.
Php-S x. x. x. x: 8888-t public
Host browser test
The above is all the content of this article, hoping to help you learn laravel5.
Http://www.bkjia.com/PHPjc/980220.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/980220.htmlTechArticleLaravel 5 framework learning Laravel entry and new project, laravel new project this series of articles is laracasts.com in the entry Series video notes, I made some modifications, can refer to this...