feat(front): 官网套餐页提交开通意向线索(PlatformLead)

This commit is contained in:
萝卜
2026-03-14 02:31:28 +00:00
parent e1822e4389
commit 249ffb3aba
7 changed files with 201 additions and 12 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class PlatformLead extends Model
{
use HasFactory;
protected $fillable = [
'name',
'mobile',
'email',
'company',
'source',
'status',
'note',
'plan_id',
'meta',
];
protected $casts = [
'meta' => 'array',
];
}