diff --git a/app/app/Models/SalesProspect.php b/app/app/Models/SalesProspect.php index 1880b0b4..012eafe3 100644 --- a/app/app/Models/SalesProspect.php +++ b/app/app/Models/SalesProspect.php @@ -36,6 +36,10 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo; * @property Carbon|null $next_call_at * @property string|null $reason * @property string|null $registered_email + * @property string|null $test_channel + * @property string|null $test_target + * @property string|null $kp_channel + * @property string|null $kp_target * @property int|null $linked_tenant_id * @property string|null $notes * @property Carbon $created_at @@ -52,6 +56,7 @@ class SalesProspect extends Model 'sales_user_id', 'assigned_by', 'stage', 'source', 'firm_name', 'legal_name', 'contacts', 'city', 'phone', 'site', 'inn', 'rating_label', 'payload', 'next_call_at', 'reason', 'registered_email', 'linked_tenant_id', 'notes', + 'test_channel', 'test_target', 'kp_channel', 'kp_target', ]; /** Дефолты in-memory (совпадают с DB DEFAULT), чтобы поля были доступны до refresh. */