Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio committed Sep 1, 2023
1 parent 582156b commit c3a1428
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ protected function setUp(): void
Column::make('has_donations')
->heading(__('organization.labels.has_donations'))
->formatStateUsing(
fn (Organization $record) => dd($record, $record->projects->sum('donations_count'))
fn (Organization $record) => $record->projects->sum('donations_count')
? __('forms::components.select.boolean.true')
: __('forms::components.select.boolean.false')
),
Expand Down

0 comments on commit c3a1428

Please sign in to comment.