Esempio n. 1
0
 public function getGallerylist()
 {
     $users = UserGallery::with('user')->where('status', UserEnum::GALLERY_CHECK)->paginate(15);
     return $this->view('gallery')->with('users', $users);
 }