/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function getIndex() { $slides = Slides::all(); return view('admin.slides.index', compact('slides')); }
private function Slides() { return $this->fetchTable(Slides::all()); }