Skip to content

Commit eacd01a

Browse files
remove debug
1 parent ee456ba commit eacd01a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

app/Filament/Organizations/Resources/BeneficiaryResource/Pages/CreateBeneficiary.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ function (Get $get, Set $set) {
180180
)
181181
->content(function (Get $get) {
182182
$organization = $get('organization_where_beneficiary_exist');
183-
debug($organization);
184183

185184
$beneficiary = Beneficiary::query()
186185
->where('cnp', $get('cnp'))

app/Forms/Components/Location.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ public function getDefaultChildComponents(): array
249249
->live()
250250
->searchable()
251251
->required($this->isRequired())
252-
->disabled(fn (Get $get) => $this->isDisabled() || ! debug($get($this->getCountyField())))
252+
->disabled(fn (Get $get) => $this->isDisabled() || ! $get($this->getCountyField()))
253253
->getSearchResultsUsing(function (string $search, Get $get) {
254254
return City::search($search)
255255
->where('county_id', (int) $get($this->getCountyField()))

0 commit comments

Comments
 (0)