/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $del = TheraterMovie::find($id)->delete();
     if ($del) {
         return $this->index();
     }
     return ['del' => 0];
 }
Exemplo n.º 2
0
 /**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store(Request $request)
 {
     $theratersmovies = TheraterMovie::create(array('movie_name' => $request->input('movie_name'), 'show_movie' => $request->input('show_movie'), 'therater_name' => $request->input('therater_name'), 'region' => $request->input('region'), 'address' => $request->input('address'), 'showday' => $request->input('showday'), 'showtime' => $request->input('showtime'), 'remark' => $request->input('remark')));
     if ($theratersmovies) {
         return $this->index();
     }
     // $validator = \Validator::make($data = \Input::except('_token'), TheraterMovie::$rules);
     // if ($validator           ->fails()) {
     // 	return \Redirect::back()->withErrors($validator)->withInput();
     // }
     // TheraterMovie::create(
     // 	array('latestmovies_id' => ($data['show_movie']), 'therater_name' => ($data['therater_name']), 'region' => ($data['region']), 'address' => $data['address'], 'showday' => $data['showday'], 'showtime' => $data['showtime'], 'remark' => $data['remark'], 'show_movie' => $data['show_movie']));
     // return $this->index();
 }
 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id)
 {
     $theratermovies = LatestMovies::where("movie_name", $id)->get();
     $theratershow = TheraterMovie::where("show_movie", $id)->get();
     return view('frontend.movietheraterdetails')->with('theratermovies', $theratermovies)->with('theratershow', $theratershow);
 }