I am trying to create mysql tables in Laravel 5. I created a file in /project/database/migrations called users.php:
/project/database/migrations
users.php
[...] public functi
in laravel 5 first we need to create migration and then run the migration
Step 1.
php artisan make:migration create_users_table --create=users
Step 2.
php artisan migrate