/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $theratermovies = TheraterMovie::latest('showday')->simplePaginate(8);
     return view('frontend.moviestherater')->with('theratermovies', $theratermovies);
 }
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $theratermovie = TheraterMovie::latest('created_at')->paginate(8);
     return view('backend.controltheratermovie.index')->with('theratermovie', $theratermovie);
 }