What seems to be the problem: the session message is not printing in app.blade.php
Steps to Reproduce:
Are you using the latest version of Livewire: 2.0 and laravel 8
Do you have any screenshots or code examples:
layouts/demo.blade.php
@if (session()->has(‘message.text’))
×
{{ session(‘message.text’) }}
@endif
/////////////////////
livewire:
category.php livewire component
session()->flash(‘message’, [
‘text’=>‘delete successfully’,
‘type’=>‘error’,
]);