コード例 #1
0
ファイル: GalleryRepo.php プロジェクト: sidis405/KP
 public function getAllFront($howMany = 9)
 {
     return Gallery::with('coverImage', 'featuredImage')->where('featured_image_id', '>', 0)->where('cover_image_id', '>', 0)->latest()->simplePaginate($howMany);
 }