<?php
namespace App\Filament\Widgets;
use App\Models\Supplier;
use Filament\Widgets\Widget;
class TotalSuppliers extends Widget
{
protected static string $view = 'filament.widgets.total-suppliers';
protected static ?string $heading = 'Total Suppliers';
protected static ?int $sort = 4;
protected function getViewData(): array
{
return [
'totalSuppliers' => Supplier::count(),
];
}
}