Laravel a une table
Schema::hasTable('mytable');
Elated Eel
Schema::hasTable('mytable');
if (Schema::hasTable('users')) {
// The "users" table exists...
}
if (Schema::hasColumn('users', 'email')) {
// The "users" table exists and has an "email" column...
}