Installation - Laravel - The PHP Framework For Web Artisans
Your PC can Install Localhost already
then step follow
Step 1
https://getcomposer.org/download/
Step 2
Install Laravel
composer create-project laravel/laravel blog "5.1.*"
php artisan serve
php artisan serve --port=8080
Step 3
create database :
.env files
step 4
php artisan make:migration create_posts_table --create=posts
php artisan migrate
php artisan make:model Post
php artisan make:controller PostsController
php artisan serve --port=8080
then step follow
Step 1
https://getcomposer.org/download/
Step 2
Install Laravel
composer create-project laravel/laravel blog "5.1.*"
php artisan serve
php artisan serve --port=8080
Step 3
create database :
.env files
step 4
php artisan make:migration create_posts_table --create=posts
php artisan migrate
php artisan make:model Post
php artisan make:controller PostsController
php artisan serve --port=8080
Post a Comment