public function reviews() { // $libros = Libro::paginate(5); return view('reviews', compact('libros')); }
/** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy($id) { Libro::destroy($id); Session::flash('message', 'Libro Eliminado Correctamente'); return Redirect::to('/libro'); }