Answers for "laravel has table"

PHP
2

laravel has table

Schema::hasTable('mytable');
Posted by: Guest on September-17-2020
0

laravel if database has table

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

Browse Popular Code Answers by Language