App\Http\Controllers\RecipesController::destroy PHP Method

destroy() public method

Remove the specified resource from storage.
public destroy ( Recipe $recipe ) : Response
$recipe app\models\Recipe
return Response
    public function destroy(Recipe $recipe)
    {
        $this->recipe->delete($recipe->id);
        return redirect()->route('recipes.index');
    }