I use https://github.com/spatie/laravel-flash Then I have a notification component and a info alert component made from the notification component that I simply display when I flash a info message and return back.
I currently use this
views/shared/flash.blade.php
@if (flash()->message)
@component('components.alert', ['class' => flash()->class])
{{ flash()->message }}
@endcomponent
@endif
views/components/alert.blade.php
<!-- Alert component -->
<div class="alert alert-{{ $class }}">
{{ $slot }}
</div>
<!-- End Alert component -->
then I include this on all pages that should have this, could probably done it in a layout and extended from it if you use it a lot.
@section('content')
@include('shared.flash')
@include('shared.error')
...
then in etc a store request
flash('Agent created', 'success');
return redirect()->route('agents.index');