components([ Schemas\Components\Section::make()->columns(2)->schema([ Forms\Components\TextInput::make('name')->label(__('Nume'))->required()->maxLength(160), Forms\Components\TextInput::make('phone')->label(__('Telefon'))->required()->maxLength(40), Forms\Components\TextInput::make('email')->label(__('Email'))->email()->maxLength(160), Forms\Components\Select::make('client_id') ->label(__('Client legat (CRM)')) ->options(fn () => \App\Models\Tenant\Client::pluck('name', 'id')) ->searchable() ->helperText(__('Legătura cu fișa CRM (opțional). Auto-matched la înregistrare după telefon.')), ]), ]); } public static function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('name')->searchable()->sortable(), Tables\Columns\TextColumn::make('phone')->copyable()->searchable(), Tables\Columns\TextColumn::make('email')->placeholder('—')->copyable()->toggleable(), Tables\Columns\TextColumn::make('client.name')->label(__('Client CRM'))->placeholder('—')->toggleable(), Tables\Columns\TextColumn::make('orders_count')->counts('orders')->label(__('Comenzi'))->alignRight(), Tables\Columns\TextColumn::make('last_login_at')->label(__('Ultim login'))->since()->placeholder(__('Niciodată')), Tables\Columns\TextColumn::make('created_at')->label(__('Înregistrat'))->date('d.m.Y')->toggleable(), ]) ->actions([ Actions\Action::make('reset_password') ->label(__('Trimite reset parolă')) ->icon('heroicon-m-key') ->color('warning') ->visible(fn (ShopCustomer $r) => ! empty($r->email)) ->requiresConfirmation() ->modalDescription(__('Trimite emailul standard de resetare a parolei către clientul magazinului.')) ->action(function (ShopCustomer $r) { $status = Password::broker('shop_customers')->sendResetLink(['email' => $r->email]); Notification::make() ->title($status === Password::RESET_LINK_SENT ? 'Link de resetare trimis la ' . $r->email : 'Eșec: ' . $status) ->{$status === Password::RESET_LINK_SENT ? 'success' : 'warning'}() ->send(); }), Actions\EditAction::make(), Actions\DeleteAction::make(), ]) ->emptyStateHeading(__('Niciun client magazin')) ->emptyStateDescription(__('Aici apar clienții care și-au creat cont în magazinul online (/shop/register).')) ->emptyStateIcon('heroicon-o-user-circle') ->defaultSort('created_at', 'desc'); } public static function getRelations(): array { return [ RelationManagers\OrdersRelationManager::class, ]; } public static function getModelLabel(): string { return __('client magazin'); } public static function getPluralModelLabel(): string { return __('clienți magazin'); } public static function getPages(): array { return [ 'index' => Pages\ListShopCustomers::route('/'), 'edit' => Pages\EditShopCustomer::route('/{record}/edit'), ]; } }