<?php
namespace App\Filament\Widgets;
use App\Models\Make;
use Filament\Widgets\Widget;
class TotalMakes extends Widget
{
protected static string $view = 'filament.widgets.total-makes';
protected static ?string $heading = 'Total Makes';
protected static ?int $sort = 2;
protected function getViewData(): array
{
return [
'totalMakes' => Make::count(),
];
}
}