We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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?
The text was updated successfully, but these errors were encountered:
You can try like this instead
$this->alert('success', 'title', [ 'position' => 'center', 'timer' => 2000, 'toast' => false, 'text' => 'this is detail message' ]);
Sorry, something went wrong.
No branches or pull requests
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?
The text was updated successfully, but these errors were encountered: