if (Schema::hasTable('users')) {
// "users" 表存在...
}
if (Schema::hasColumn('users', 'email')) {
// "users" 表存在,并且有 "email" 列...
}
"illuminate/database": "^9.27",
"illuminate/pagination": "^9.27",
"illuminate/events": "^9.27",
use Illuminate\Support\Facades\Schema;
if (Schema::hasTable('users')) {
// "users" 表存在...
}
A facade root has not been set
试下
可以了
大佬 牛逼