Set theme from controllers
gotexx1 opened this issue · 0 comments
gotexx1 commented
I can't set theme from my controller like this:
public function switchTheme(Request $request)
{
$request->validate([
'theme' => ['required', 'string']
]);
Theme::set($request->theme);
return redirect()->route('admin.settings.index', ['p' => 'theme'])
->with('toast', 'success')
->with('message', 'Thème ' . Theme::current() . ' appliqué avec succès');
}
Theme::current() value still the Default active Theme in config/theme.php