Hello, i am new in Laravel and in DigitalOcean too :) I create droplet, install Vesta and after install Laravel 5.1 I have several questions:
i not use homestead, i dont`know what is this. i think its like xamp(lamp/wamp) i use my droplet. 3) Laravel has something like YII gii or CakePHP (code generator from database with relationships) ? In the terminal i try use command php artisan make:model User php artisan make:migration create_users_table after php artisan make:migration add_votes_to_users_table --table=users
php artisan make:migration create_users_table --create=users in terminal all succesfully and i see new models, controllers, but in my database - not.
What i want - i want use PHPSTORM 9 and create, edit files and upload to server.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
It is finding the database, but denying access for the
homestead
user.Homestead is a Vagrant box containing the full Laravel development environment aiming to make it simple to get everything up and running locally. As the Laravel database docs mention, by default the
.env
file is configured for using Homestead:In your
.env
file, you need to specify the username, password, and database as well as your host.