k3l
k3l
FFilament
Created by Warrior on 6/30/2024 in #❓┊help
Custom summaries with value calculated in column
Were you able to solve it?
6 replies
FFilament
Created by k3l on 7/23/2024 in #❓┊help
Disable Pagination in List of Widgets
Inside the getHeaderWidgets() function, I have a for that generates a different widget for each currency. I think because the function returns an array of widgets, it automatically sets up pagination. I don't know how can I disable it and show all widgets protected function getHeaderWidgets(): array { $organizationId = Auth::user()->organization_id; $currencies = Currency::where('organization_id', $organizationId)->where('status', true)->get();
$widgets = []; foreach ($currencies as $currency) { $widgets[] = ProjectedRevenueResource\Widgets\ProjectionTable::make([ 'currencyId' => $currency->id, 'currencySymbol' => $currency->symbol ]); }
return $widgets; }
7 replies
FFilament
Created by k3l on 7/23/2024 in #❓┊help
Disable Pagination in List of Widgets
No description
7 replies
FFilament
Created by k3l on 7/23/2024 in #❓┊help
Disable Pagination in List of Widgets
This is specific for each table and I already used it. But I dont know how to use when I have a pagination to navigate between differents widgets
7 replies