how to check if there is a column in database table in laravel code example
Example: laravel check if table has column
if (Schema::hasTable('users')) {
// The "users" table exists...
}
if (Schema::hasColumn('users', 'email')) {
// The "users" table exists and has an "email" column...
}