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

Flash Always Redirecting Homepage #118

Open
reasecret opened this issue Apr 5, 2023 · 1 comment
Open

Flash Always Redirecting Homepage #118

reasecret opened this issue Apr 5, 2023 · 1 comment

Comments

@reasecret
Copy link

I'm trying to use redirection like this:

        $group = Group::create([
            'title' => $this->groupTitle,
            'user_id' => Auth::user()->id,
            'description' => $this->groupDescription,
        ]);

        $this->flash('success', __('translation.success', [
            'toast' => true,
            'timer' => 3000,
            'position' => 'top-end',
            'timerProgressBar' => true
        ], route('group.single', ['group' => $group])));

web.php:
Route::get('/{group}', SingleGroup::class)->name('group.single');

Flash alert is working but redirects to home page. All flash redirections are redirecting to homepage. Is this normal or am I doing someting wrong?

@ilham301098
Copy link

You can try like this instead

$this->alert('success', 'title', [
'position' => 'center',
'timer' => 2000,
'toast' => false,
'text' => 'this is detail message'
]);

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

2 participants