Answers for "laravel if database has table"

PHP
2

laravel has table

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

check table exists in db laravel

if (!Schema::hasTable('table_name')) {
    // Code to create table
}
Posted by: Guest on July-15-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

Code answers related to "laravel if database has table"

Browse Popular Code Answers by Language