/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit()
 {
     $categorias = Categoria::lists('categoria', 'id');
     $ingredientes = Ingrediente::lists('ingrediente', 'id');
     return view('pizza.edit', ['pizza' => $this->pizza, 'categorias' => $categorias, 'ingrediente' => $ingredientes]);
 }