a4601fe84b
Старт closing «Notification delivery» из карты P0. Этап 1/6 плана: NotificationService + Mailable + интеграция в ProcessWebhookJob::chargeNewLead. - App\Services\NotificationService — диспетчер 8 событий × 3 каналов (inapp/push/email) согласно schema.sql:699 users.notification_preferences. Этап 1 реализует только email-канал для new_lead. - App\Mail\NewLeadNotification + emails/new_lead.blade.php — HTML-письмо в Forest-палитре с таблицей phone/contact_name/received_at/deal_id. - ProcessWebhookJob::chargeNewLead — после ActivityLog вызывает notifyNewLead. Throwable от Mail::send проглатывается + Log::warning (отказ канала не должен валить транзакцию). - Pest 11/11 в tests/Feature/Notifications/NewLeadNotificationTest.php: email=true получает / email=false не получает / schema-default не шлёт / inactive не получает / soft-deleted не получает / другой тенант не получает / Биз-19 дубль не дублирует / повторный vid не дублирует / balance=0 не шлёт / subject содержит project_name. - IDE-helper регенерирован (4 модели получили @mixin docblocks). - PHPStan baseline регенерирован (138 ignore.unmatched схлопнулись). Pest 280/280 за 31.27 сек (+11 от 269, 1029 assertions). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
44 lines
1018 B
PHP
44 lines
1018 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
/**
|
|
* Глобальная настройка SaaS (schema v8.7 §3.4 / table system_settings).
|
|
*
|
|
* PRIMARY KEY = key (VARCHAR(100)). Без RLS — общесистемная таблица.
|
|
*
|
|
* @property string $key
|
|
* @property string $value
|
|
* @property string $type
|
|
* @property string|null $description
|
|
* @property Carbon $updated_at
|
|
* @property int|null $updated_by
|
|
*
|
|
* @mixin IdeHelperSystemSetting
|
|
*/
|
|
class SystemSetting extends Model
|
|
{
|
|
protected $primaryKey = 'key';
|
|
|
|
public $incrementing = false;
|
|
|
|
protected $keyType = 'string';
|
|
|
|
/** Schema не имеет created_at — только updated_at. */
|
|
public const CREATED_AT = null;
|
|
|
|
protected $fillable = ['key', 'value', 'type', 'description', 'updated_at', 'updated_by'];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'updated_at' => 'datetime',
|
|
];
|
|
}
|
|
}
|