How to Create Project in Laravel
This is my first application tutorial. how to create or build project in laravel. this video will help you while creating a new project in laravel 5.
1. Install laravel :
https://laravel.com/
2. Create Project :
composer create-project --prefer-dist laravel/laravel Projectname
3. Local Development Server :
If you have PHP installed locally and you would like to use PHP's built-in
development server to serve your application, you may use the serve Artisan command.
This command will start a development server at http://localhost:8000:
php artisan serve
4. Quick Authentication :
Laravel provides a quick way to scaffold all of the routes and
views you need for authentication using one simple command:
php artisan make:auth
0 comments:
Post a Comment