Open reasecret opened 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');
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?
You can try like this instead
$this->alert('success', 'title', [ 'position' => 'center', 'timer' => 2000, 'toast' => false, 'text' => 'this is detail message' ]);
I'm trying to use redirection like this:
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?