<?php
namespace App\Filament\Widgets;
use App\Models\Order;
use Filament\Widgets\Widget;
class TotalOrders extends Widget
{
protected static string $view = 'filament.widgets.total-orders';
protected static ?string $heading = 'Total Orders';
protected static ?int $sort = 5;
protected function getViewData(): array
{
return [
'totalOrders' => Order::count(),
];
}
}