如何在Laravel中获取关系模型的当前页面标题



我的数据库表中有一些字段,我想根据每个页面显示titledescriptionkeywords,请告诉我如何显示。我的数据库字段名称为metatitlemetadesckeyword

这是我显示属性列表的控制器代码。。。

public function listtype($slug){
$prtype= Listing::whereHas('proType',function($q) use($slug){
$q->where('slug','like','%'.$slug.'%');
})->paginate(50);
return view('property-type',compact('prtype','title'));
}

您可以执行以下操作:

public function listtype($slug){
$prtype= Listing::whereHas('proType',function($q) use($slug){
$q->where('slug','like','%'.$slug.'%');
})->with('proType')->paginate(50);
dd($prtype); /** for checking **/ 
return view('property-type',compact('prtype', $prtype));
}

相关内容

  • 没有找到相关文章

最新更新