where('ukw_certificate', '!=', '') ->count(); $notCertified = Journalist::where(function ($query) { $query->whereNull('ukw_certificate') ->orWhere('ukw_certificate', ''); })->count(); return [ 'datasets' => [ [ 'label' => 'Jumlah Jurnalis', 'data' => [$certified, $notCertified], 'backgroundColor' => ['#10B981', '#EF4444'], ], ], 'labels' => ['Sudah Sertifikasi UKW', 'Belum Sertifikasi UKW'], ]; } protected function getType(): string { return 'doughnut'; } }