Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set theme from controllers #70

Open
gotexx1 opened this issue Dec 27, 2023 · 0 comments
Open

Set theme from controllers #70

gotexx1 opened this issue Dec 27, 2023 · 0 comments

Comments

@gotexx1
Copy link

gotexx1 commented Dec 27, 2023

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant