Answers for "laravel check if table contains column"

PHP
0

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...
}
Posted by: Guest on January-18-2021
1

table has column laravel

Schema::hasColumn('users', 'email') // laravel
Posted by: Guest on October-30-2020

Code answers related to "laravel check if table contains column"

Browse Popular Code Answers by Language