/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\View\View
  */
 public function index()
 {
     $this->data['episodes'] = $this->episode->orderBy('id', 'DESC')->get();
     $this->data['user'] = $this->auth->user();
     return view('admin.episodes.index', $this->data);
 }