Add beneficiary_id to health care sheets table v2

This commit is contained in:
Djery-Tom 2022-01-12 18:37:23 +01:00
parent 192e5cac9a
commit 907b6271c0
1 changed files with 2 additions and 0 deletions

View File

@ -1056,6 +1056,8 @@ class HealthCareSheetController extends Controller
if (!empty($beneficiary_id)) {
$query = $query->where('beneficiary_id', $beneficiary_id);
} else {
$query = $query->whereNull('beneficiary_id');
}
}