芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/reginaeigbe.com/folder/admin/tmp/app/Repositories/Admin/ThemeRepository.php
model = $theme; } /** * get all themes */ public function getThemes(): mixed { return $this->model->orderBy('is_active', 'desc')->get(); } /** * Theme activate */ public function activate(Theme $theme, SettingRepository $repository): void { Theme::where('id', '<>', $theme->id)->update(['is_active' => '0']); $theme->update(['is_active' => '1']); // update active theme to setting $repository->updateSettingByGroup('theme_settings', ['active_theme' => $theme->identifier]); } }