step by step how to migrate existing database in laravel code example
Example 1: Generate Laravel Migrations from an existing database
composer require --dev "xethron/migrations-generator"
Example 2: migrate to an existing table in laravel commad
public function up()
{
Schema::table('users', function($table) {
$table->integer('paid');
});
}