I am following Laravel documentation for creating Authentication system.
My Steps Are
- Installing fresh laravel using
laravel new my-project - Then enter into directory (
cd my-project). Edit the database config file with database credentials. - Then run
php artisan make:auth. All migration php files are created. - Run
php artisan migrate. CLI responds withnothing to migrate
So I went back to check the database using phpmyadmin. I do not see any migration table.
System & Version info
- Vagrant box
laravel/homestead - Database mariaDb
- Laravel installer
v1.3.5, by cli commandlaravel -v - Laravel
v5.4.16, fromcomposer.lock
Can anyone point me to the right direction?
via Sisir