56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Widgets;
|
|
|
|
use App\Models\PartnerMedia;
|
|
use Carbon\Carbon;
|
|
use Filament\Widgets\ChartWidget;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class MediaRegistrationChart extends ChartWidget
|
|
{
|
|
use \Filament\Widgets\Concerns\InteractsWithPageFilters;
|
|
|
|
protected ?string $heading = 'Tren Pendaftaran Media';
|
|
|
|
protected static ?int $sort = 4;
|
|
|
|
protected int|string|array $columnSpan = 'full';
|
|
|
|
protected function getData(): array
|
|
{
|
|
$startDate = $this->filters['startDate'] ?? null;
|
|
$endDate = $this->filters['endDate'] ?? null;
|
|
|
|
$data = PartnerMedia::query()
|
|
->select(
|
|
DB::raw('COUNT(*) as count'),
|
|
DB::raw("DATE_FORMAT(created_at, '%Y-%m') as month")
|
|
)
|
|
->when($startDate, fn ($q) => $q->whereDate('created_at', '>=', $startDate))
|
|
->when(! $startDate, fn ($q) => $q->where('created_at', '>=', now()->subMonths(6)))
|
|
->when($endDate, fn ($q) => $q->whereDate('created_at', '<=', $endDate))
|
|
->groupBy('month')
|
|
->orderBy('month')
|
|
->get();
|
|
|
|
return [
|
|
'datasets' => [
|
|
[
|
|
'label' => 'Media Baru',
|
|
'data' => $data->pluck('count')->toArray(),
|
|
'fill' => 'start',
|
|
'borderColor' => '#10B981',
|
|
'backgroundColor' => 'rgba(16, 185, 129, 0.1)',
|
|
],
|
|
],
|
|
'labels' => $data->pluck('month')->map(fn ($m) => Carbon::createFromFormat('Y-m', $m)->translatedFormat('M Y'))->toArray(),
|
|
];
|
|
}
|
|
|
|
protected function getType(): string
|
|
{
|
|
return 'line';
|
|
}
|
|
}
|