芝麻web文件管理V1.00
编辑当前文件:/home/forge/stage.sksb.smartcon-survey.com/app/Models/User.php
'datetime', ]; public static function search($search) { return empty($search) ? static::query() : static::where('id', 'like', "%{$search}%") ->orWhere('name', 'like', "%{$search}%") ->orWhere('email', 'like', "%{$search}%"); } public function canAccessPanel(Panel $panel): bool { return $this->is_admin; } }