/**
  * 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];
 }