modified: .gitignore

This commit is contained in:
brusnitsyn
2026-04-21 10:08:14 +09:00
parent 0e8b6f61b4
commit 2041ab54ea
74 changed files with 7533 additions and 1544 deletions

View File

@@ -15,7 +15,9 @@ class OperationController extends Controller
'historyId' => 'required|integer'
]);
$operations = MisSurgicalOperation::where('rf_MedicalHistoryID', $request->historyId)->get();
$operations = MisSurgicalOperation::where('rf_MedicalHistoryID', $request->historyId)
->completed()
->get();
return response()->json(
OperationsResource::collection($operations)