Run laravel project locally
##Windows users:
cmder will be refered as console
##Mac Os, Ubuntu and windows users continue here:
homestead
utf8_general_ci.env.example
file to .env
inside your project root and fill the database information.
(windows wont let you do it, so you have to open your console cd your project root directory and run mv .env.example .env
)composer install
or php composer.phar install
php artisan key:generate
php artisan migrate
php artisan db:seed
to run seeders, if any.php artisan serve
#####You can now access your project at localhost:8000 :)
composer install
php artisan migrate