eloquent create table code example
Example 1: migrate to an existing table in laravel commad
php artisan make:migration add_paid_to_users_table --table=users
Example 2: php artisan migrat
php artisan migrate
Example 3: create table laravel
php artisan make:migration create_employeeDetails_table --create=Employee
//goto create_employeeDetails_table file and add fields in table
php artisan migrate