/** * Remove the specified resource from storage. * * @param Service $service * * @return Response * @throws \Exception * @internal param int $id * */ public function destroy(Service $service) { $service->delete(); return redirect('services'); }