コード例 #1
0
ファイル: Content.php プロジェクト: orsic/bushido
 public function getInfo()
 {
     return ContentLocale::where('locale', 'hr')->where('news_id', $this->id)->first()->title;
 }
コード例 #2
0
ファイル: AdminNewsController.php プロジェクト: orsic/bushido
 protected function getLocale($id, $loc)
 {
     return ContentLocale::where('news_id', $id)->where('locale', $loc)->first();
 }