laravel migration add column to users code example
Example 1: laravel add column to table
Schema::table('users', function (Blueprint $table) {
$table->dateTime('verify_date')->nullable()->after("password_updated_at");
});
Example 2: add column to migration laravel
php artisan make:migration add_profile_to_users