jantinnerezo / livewire-alert

SweetAlert2 wrapper for Livewire
https://livewire-alert.jantinnerezo.com
MIT License
709 stars 73 forks source link

Flash Always Redirecting Homepage #118

Open reasecret opened 1 year ago

reasecret commented 1 year ago

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 commented 1 year ago

You can try like this instead

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