laravel if database has table code example
Example 1: laravel has table
Schema::hasTable('mytable');
Example 2: 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...
}