Faza 3.1: CRM core — Leads, Deals, Appointments, Settings, Widgets, Users

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
This commit is contained in:
2026-05-06 17:36:32 +00:00
parent 4b1635d045
commit c9cb3560ef
34 changed files with 1742 additions and 3 deletions
@@ -0,0 +1,124 @@
<?php
namespace App\Filament\Tenant\Resources;
use App\Filament\Tenant\Resources\AppointmentResource\Pages;
use App\Models\Tenant\Appointment;
use App\Models\Tenant\Client;
use App\Models\Tenant\Post;
use App\Models\Tenant\User;
use App\Models\Tenant\Vehicle;
use Filament\Forms;
use Filament\Resources\Resource;
use Filament\Schemas\Schema;
use Filament\Tables;
use Filament\Tables\Table;
class AppointmentResource extends Resource
{
protected static ?string $model = Appointment::class;
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-calendar-days';
protected static ?string $navigationLabel = 'Calendar';
protected static string|\UnitEnum|null $navigationGroup = 'CRM';
protected static ?string $modelLabel = 'programare';
protected static ?string $pluralModelLabel = 'programări';
protected static ?int $navigationSort = 7;
public static function form(Schema $schema): Schema
{
return $schema->components([
Forms\Components\Section::make('Când & unde')
->columns(3)
->schema([
Forms\Components\DatePicker::make('date')->label('Data')->default(today())->required(),
Forms\Components\TimePicker::make('time_start')->label('De la')->required()->seconds(false),
Forms\Components\TimePicker::make('time_end')->label('Până la')->required()->seconds(false),
Forms\Components\Select::make('post_id')
->label('Pod')
->options(fn () => Post::where('is_active', true)->orderBy('sort_order')->pluck('name', 'id'))
->searchable(),
Forms\Components\Select::make('master_id')
->label('Maistru / Mecanic')
->options(fn () => User::pluck('name', 'id'))
->searchable(),
Forms\Components\Select::make('status')
->options(Appointment::STATUSES)
->default('scheduled')
->required(),
]),
Forms\Components\Section::make('Client & Auto')
->columns(2)
->schema([
Forms\Components\Select::make('client_id')
->label('Client')
->options(fn () => Client::pluck('name', 'id'))
->searchable()
->live(),
Forms\Components\Select::make('vehicle_id')
->label('Auto')
->options(fn (Forms\Get $get) => $get('client_id')
? Vehicle::where('client_id', $get('client_id'))->pluck('plate', 'id')
: [])
->searchable(),
]),
Forms\Components\TextInput::make('title')->label('Subiect')->required()->maxLength(160),
Forms\Components\Textarea::make('notes')->label('Notițe')->columnSpanFull()->rows(2),
]);
}
public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\TextColumn::make('date')->label('Data')->date('d.m.Y')->sortable(),
Tables\Columns\TextColumn::make('time_start')->label('De la')->time('H:i'),
Tables\Columns\TextColumn::make('time_end')->label('Până la')->time('H:i'),
Tables\Columns\TextColumn::make('post.name')->label('Pod')->placeholder('—'),
Tables\Columns\TextColumn::make('title')->label('Subiect')->searchable()->limit(40),
Tables\Columns\TextColumn::make('client.name')->label('Client')->placeholder('—'),
Tables\Columns\TextColumn::make('vehicle.plate')->label('Auto')->placeholder('—'),
Tables\Columns\TextColumn::make('master.name')->label('Maistru')->placeholder('—'),
Tables\Columns\TextColumn::make('status')
->formatStateUsing(fn ($state) => Appointment::STATUSES[$state] ?? $state)
->badge()
->colors([
'gray' => ['scheduled'],
'warning' => ['arrived'],
'success' => ['done'],
'danger' => ['cancelled', 'no_show'],
]),
])
->filters([
Tables\Filters\Filter::make('today')
->label('Astăzi')
->query(fn ($q) => $q->whereDate('date', today())),
Tables\Filters\Filter::make('upcoming')
->label('Viitoare')
->query(fn ($q) => $q->where('date', '>=', today())),
Tables\Filters\SelectFilter::make('status')->options(Appointment::STATUSES),
Tables\Filters\SelectFilter::make('post_id')
->label('Pod')
->options(fn () => Post::pluck('name', 'id')),
])
->actions([
Tables\Actions\EditAction::make(),
Tables\Actions\DeleteAction::make(),
])
->defaultSort('date', 'desc');
}
public static function getPages(): array
{
return [
'index' => Pages\ListAppointments::route('/'),
'create' => Pages\CreateAppointment::route('/create'),
'edit' => Pages\EditAppointment::route('/{record}/edit'),
];
}
}