diff --git a/tests/DishesTable.php b/tests/DishesTable.php index 409b102c..548312a1 100644 --- a/tests/DishesTable.php +++ b/tests/DishesTable.php @@ -154,11 +154,8 @@ public function columns(): array ->title(__('Preço')) ->field('price_BRL') ->withSum('Sum Price', false, true) - ->formatSum(fn ($sum) => 'R$ ' . number_format($sum, 2, '.', ',')) ->withCount('Count', false, true) - ->formatCount(fn ($count) => number_format($count, 2, '.', '')) ->withAvg('Avg Price', false, true) - ->formatAvg(fn ($avg) => 'R$ ' . number_format($avg, 2, '.', ',')) ->editOnClick($canEdit, 'price') ->makeInputRange('price', '.', ','), diff --git a/tests/DishesTableWithJoin.php b/tests/DishesTableWithJoin.php index c0a5d3e6..cacad613 100644 --- a/tests/DishesTableWithJoin.php +++ b/tests/DishesTableWithJoin.php @@ -152,11 +152,8 @@ public function columns(): array ->title(__('Preço')) ->field('price_BRL') ->withSum('Sum Price', false, true) - ->formatSum(fn ($sum) => 'R$ ' . number_format($sum, 2, '.', ',')) ->withCount('Count', false, true) - ->formatCount(fn ($count) => number_format($count, 2, '.', '')) ->withAvg('Avg Price', false, true) - ->formatAvg(fn ($avg) => 'R$ ' . number_format($avg, 2, '.', ',')) ->editOnClick($canEdit) ->makeInputRange('price', '.', ','),