score:6

According to the error message its clearly saying Attempt to read property (because you are trying to access like $data->name <--OBJECT) on array and your foreach variable is array. so you will need to access like key value pair.

Use like this in loop-

     {{ $data['name'] }}
     {{ $data['description'] }}

More Answer

More answer with same ag