我有laravel多语言站点。我正在为参数传递子弹。从berita传递到beritaDetail。但是它显示错误,并且当dd($ berita)时,只显示null
$title = "title_".App::getLocale()." as title";
$content = "content_".App::getLocale()." as content";
$slug = "slug_".App::getLocale();
$berita = Report::select("*", "$title", "$content")->where('slug_'.App::getLocale(), $slug)->first();
dd($berita);
$beritaRandom = Report::take(6)->inRandomOrder()->get();
return view('frontend.pages.berita_detail', array('berita' => $berita,
'beritaRandom' => $beritaRandom ));
我期望输出为$ berita,该数组包含一个与子段匹配的字段,而不是null或空数组
答案 0 :(得分:1)
$slug = "slug_".App::getLocale();
$berita = Report::select("*", "$title", "$content")->where('slug_'.App::getLocale(), $slug)->first();
您在这里所做的实际上是在检查slug_LOCALE是否等于自身。因此,在转储$berita
时,它会为空。
祝你好运