Example #1
0
 public function getJoin()
 {
     $articles = Article::leftJoin('article_types', 'type_id', '=', 'article_types.id')->select('articles.*', 'article_types.name');
     if (!is_null($articles)) {
         return $articles;
     }
     throw new GeneralException(trans('exceptions.backend.article.not_found'));
 }