laravel check if table has column code example
Example 1: laravel drop column if exists
if (Schema::hasColumn('users', 'phone')) {
Schema::table('users', function (Blueprint $table){
$table->dropColumn('phone');
});
}
Example 2: table has column laravel
Schema::hasColumn('users', 'email')
Example 3: laravel migration check if table has column
if (Schema::hasTable('users')) {
}
if (Schema::hasColumn('users', 'email')) {
}
Example 4: laravel check if table has column
if (Schema::hasTable('users')) {
}
if (Schema::hasColumn('users', 'email')) {
}