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

Delete Database Table Commad

php artisan migrate:rollback
   

No comments

Note: only a member of this blog may post a comment.