public function findall() { return $Platillos = Platillo::all(); }
/** * Display a listing of the resource. * * @return Response */ public function index() { $platillo = Platillo::all(); return View('platillo.platillo', compact('platillo')); }