I need to get specific data from a session I send instead of getting the entire array from the session from the session() method. How do I capture just the "title" from the array?
In a controller:
return redirect('bladeFile')->with('search', $search);
In the blade file:
{{session('search')}}