create likes table wiyh laravel code example
Example 1: laravel migration add column after
Schema::table('users', function ($table) {
$table->string('email')->after('id')->nullable();
});
Example 2: laravel make model with migration 5.8
php artisan make:model Settings --migration