Hello Artisan
In this quick example i will show you laravel livewire flash message example from scratch. We will know that how to show flash message after submit a form in laravel. But in this example tutorial we will show how we can show a flash message in laravel using laravel livewire.
If you don't know how to show flash message in laravel livewire, then this quick example is for you. Let's see the quick example of shoing flash message in laravel livewire. See the below code to show livewire flash message in laravel.
Here's a common example of its usage, use this in your component.
class UpdatePost extends Component
{
public Post $post;
protected $rules = [
'post.title' => 'required',
];
public function update()
{
$this->validate();
$this->post->save();
session()->flash('message', 'Post successfully updated.');
}
}
And use this code in your form.
Now, after the user clicks "Save" button, their post will be updated, they will see "Post successfully updated" on the page.
If you wish to add flash data with a redirect to a specific page, would like to show the message on the destination page instead, Livewire is smart enough to persist the flash data for one more request. For example:
public function update()
{
$this->validate();
$this->post->save();
session()->flash('message', 'Post successfully updated.');
return redirect()->to('/posts');
}
Recommended : Complete Beginners Guide on Laravel Livewire Events
Hope it can help you to build a flash message in your laravel app.
#laravel #laravel-livewire #livewire #flash-message