ブラウザで表示させようとするとProperty [id] does not exist on this collection instance.と表示されます。

view

@section('content')

@foreach($data as $row)
 <tr>
  <td>{{ $row->id }}</td>
  <td>{{ $row->title }}</td>
</tr>
@endforeach


@endsection

controller

    public function index()
    {

    $data['posts']=DB::table('posts')->get();
    var_dump($data);
    return View('post/index',['data' => $data]);

    }