/** * Remove the specified resource from storage. * DELETE /medications/{id} * * @param int $id * @return Response */ public function destroy($id) { $medication = Medication::find($id); Medication::destroy($id); return Redirect::route('patient-chart-get', $medication->patient_id)->with('global', "Medication record deleted successfully"); }