我想基于那段子弹获得模型标题。
这是我从数据库中获取模型的方法:
{{ $news->model }}
这将返回我
rebecca-david
我想做的是基于models
中的子弹来获得title的值:
Rebecca David
这是我的控制人:
public function newsSingle($news_category, $model, $id, $slug)
{
// return $slug;
$data = $this->data;
$data['news'] = News::with('category_name','news_image','models','creative')
->where('slug','=',$slug)
->orWhere('id','=',$id)
->orWhere('model','=',$model)
->orWhere('news_category','=',$news_category)
->first();
}
我需要基于该models
从表title
的列slug
中获得模型标题。
答案 0 :(得分:0)
您可以这样做来扭转弹头:
{{ ucwords(str_replace('-', ' ', $news->model)) }}