无法在 Laravel blade 中显示相关变量

Cant show related variable in Laravel blade

我无法在 laravel blade

中显示相关变量
public function GetAll()
{
 $news=DB::table('news')->get();
 return View('index',['news'=>$news]);
}

在视图中:

@foreach($news as $new)
 ...
        <a href="#">{{$new->comments()->count()}} Comments</a>
 ...
@endforeach

它也不适用于 object 的任何变量,但对第一项有效:

public function Count()
{
   $news=News::find(1);
  echo $news->comments()->count();
 }
public function GetAll()
{
$news = News::with('comments')->get();
 return View('index',['news'=>$news]);
}

使用 ORM 而不是 DB。