// sending a massage to blade from controller
return redirect()->route('add_item')->with('message', "Category Created Successfully");
//Checking for a message from the blade
@if(session()->has('message'))
<div class="alert alert-success">
{{ session()->get('message') }}
</div>
@endif