orderByDesc('views') ->limit(10) ->get(); return [ 'datasets' => [ [ 'label' => 'Total Dilihat', 'data' => $data->pluck('views')->toArray(), 'backgroundColor' => '#EC4899', ], ], 'labels' => $data->pluck('title')->map(fn ($t) => str($t)->limit(30))->toArray(), ]; } protected function getType(): string { return 'bar'; } }