Is there a way to group stat widgets on admin panel?
Hi, I have 4 different widgets that I'm fetching in my AdminPanelProvider. The thing is, i hate the way they look. Is there a way to make them all in one row? Here's the code:
->widgets([
ShopOverview::class,
FunnelOverview::class,
FunnelOverview::make([
'label' => 'Total Draft Funnels',
'status' => \App\Models\v1\Funnel::STATUSES[FunnelStatus::DRAFT],
]),
FunnelOverview::make([
'label' => 'Total Active Funnels',
'status' => \App\Models\v1\Funnel::STATUSES[FunnelStatus::ACTIVE],
]),
FunnelOverview::make([
'label' => 'Total Paused Funnels',
'status' => \App\Models\v1\Funnel::STATUSES[FunnelStatus::PAUSED],
]),
ChargeOverview::make([
'label' => 'Total Recurring Charges',
'type' => 'RECURRING',
]),
ChargeOverview::make([
'label' => 'Total Usage Charges',
'type' => 'USAGE',
]),