Laravel 5.2 basic installation with XAMPP

hello laravel
Some demo site may interest http://scriptunited.com/demo/metroskin/
To update LARAVEL 5.2 /install laravel 5.2

composer create-project laravel/laravel blog “5.3.*”

#USER MIGRATION
php artisan migrate:install
php artisan make:migration
php artisan migrate

php artisan migrate:rollback

#make a controller
php artisan make:controller HomeController

in composer.json

wirte

“laravel/framework”: “5.2.*”,
and
composer update

for auth
php artisan make:auth

and we are done
After that

For more https://www.youtube.com/watch?v=VzzhhgTK6R0

Leave a Reply

Your email address will not be published. Required fields are marked *