App\Http\Controllers\RecipesController::edit PHP Méthode

edit() public méthode

Show the form for editing the specified resource.
public edit ( Recipe $recipe ) : Response
$recipe app\models\Recipe
Résultat Response
    public function edit(Recipe $recipe)
    {
        return view('recipes.edit')->with('recipe', $recipe);
    }