I'm trying to get the properties from the array returned by get method of Eloquent. It is a nested array as you see in image
I have tried the following answers from stackoverflow.
Property [title] does not exist on this collection instance ,
Looping PHP Nested Arrays - Extract values into Blade Views (Laravel)
My blade code is
@if(isset($reportRP))
@foreach($reportRP as $rrp)
<tr>
<td>{{ $rrp['name'] }}</td>
<td>{{$rrp['reports']->id }}</td>
@endforeach
@endif