c9cb3560ef
Spatie Permission cu teams (team_foreign_key=company_id, teams=true): - migrations create_permission_tables (model_has_roles cu company_id scope) - HasRoles trait pe User - ResolveTenant middleware setează permissions team_id la tenant.id - Seed: 7 roluri default per tenant (admin/manager/receptionist/mechanic/parts_manager/accountant/marketer) Module noi: - Leads (cereri): name, phone, car/model, source, UTM, status, budget, assigned_to, acțiune "Convertește" → creează automat Client + Deal - Deals (pipeline): client/vehicle, stage (8 stage-uri), price, source, lost_reason - Posts + Appointments: post_id (boxă), master_id, date+time_start+time_end, status, color - UserResource (tenant): CRUD users cu role/status/locale; canViewAny doar pentru admin Custom Filament page "Setări" (tenant): - Brand & contact (display_name, city, phone, email) - Localizare (limba RO/RU/EN, currency, theme color picker) - Servicii & tarif (labor_rate) - Liste configurabile (services, cars) — păstrate în companies.settings JSON Widgets dashboard: - Tenant: StatsOverview (Clienți, Mașini, Cereri noi, Deal-uri active, Programări azi) - Central: PlatformStats (Companii total/active/trial, Expiră în 7 zile) Seed extins demo PSauto: - 3 posturi (Pod 1/2/3 cu culori) - 2 lead-uri demo (Alex Grosu Telegram, Irina Cojocaru WhatsApp) - 3 deal-uri demo (BMW done, Audi in_work, Porsche agree) - 2 programări (azi + mâine) Filament v5 fixes: - $navigationGroup type → string|UnitEnum|null (parent stricter signature) - Toate resources noi au tipurile corecte
40 lines
1.3 KiB
PHP
40 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Central\Widgets;
|
|
|
|
use App\Models\Central\Company;
|
|
use Filament\Widgets\StatsOverviewWidget as BaseWidget;
|
|
use Filament\Widgets\StatsOverviewWidget\Stat;
|
|
|
|
class PlatformStats extends BaseWidget
|
|
{
|
|
protected static ?int $sort = 1;
|
|
|
|
protected function getStats(): array
|
|
{
|
|
$total = Company::count();
|
|
$active = Company::where('status', 'active')->count();
|
|
$trial = Company::where('status', 'trial')->count();
|
|
$expiring = Company::where('status', 'active')
|
|
->whereNotNull('active_until')
|
|
->whereDate('active_until', '<=', now()->addDays(7))
|
|
->count();
|
|
|
|
return [
|
|
Stat::make('Companii total', $total)
|
|
->icon('heroicon-o-building-office-2')
|
|
->color('primary'),
|
|
Stat::make('Active', $active)
|
|
->icon('heroicon-o-check-circle')
|
|
->color('success'),
|
|
Stat::make('Trial', $trial)
|
|
->icon('heroicon-o-clock')
|
|
->color('warning'),
|
|
Stat::make('Expiră în 7 zile', $expiring)
|
|
->description($expiring > 0 ? 'Atenție!' : 'Toate ok')
|
|
->icon('heroicon-o-exclamation-triangle')
|
|
->color($expiring > 0 ? 'danger' : 'success'),
|
|
];
|
|
}
|
|
}
|