/** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function delete($id) { //Soft delete the patient $metric = Metric::find($id); $metric->delete(); // redirect return Redirect::route('metric.index')->with('message', trans('messages.metric-succesfully-deleted')); }