Answers for "how to add column in model laravel"

PHP
0

add column to migration laravel

php artisan make:migration add_profile_to_users
Posted by: Guest on June-08-2020
2

laravel add column to table

Schema::table('users', function (Blueprint $table) {
	$table->dateTime('verify_date')->nullable()->after("password_updated_at");
});
Posted by: Guest on April-01-2020

Code answers related to "how to add column in model laravel"

Browse Popular Code Answers by Language