예제 #1
0
 public function getAllPostForManager()
 {
     return Post::join('categorys', 'posts.cateID', '=', 'categorys.id')->select('posts.id as id', 'title', 'summary', 'image', 'categorys.name as cate')->orderBy('id', 'desc')->get();
 }