/**
  * Fungsi buat tampilin semua data Gallery 
  * terdapat pagination
  */
 public function galleryPage()
 {
     $gallery = Gallery::paginate(4);
     $tipe = Type::all();
     return view('FrontEnd.gallery', compact('gallery', 'tipe'));
 }
 public function getGallery()
 {
     $photos = Gallery::paginate();
     return view('admin.gallery', compact('photos'));
 }