/**
  * This function response the home page view and also it clears the session details of
  * reservations if there are any.
  *
  * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
  */
 public function HomePage()
 {
     $this->clearSession();
     $images = HOME_GALLERY::all();
     $facilities = FACILITY::all();
     return view('Website.Demo')->with('images', $images)->with('facilities', $facilities);
 }
 /**
  * return Home gallery image management View
  *
  * @return $this
  *
  */
 public function webimageGallery()
 {
     $images = HOME_GALLERY::all();
     return view('nilesh.webHomeGallery')->with('images', $images);
 }