芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/app/Models/LeadAgent.php
$leads * @property-read int|null $leads_count * @mixin \Eloquent */ class LeadAgent extends BaseModel { use HasCompany; protected $table = 'lead_agents'; protected $guarded = ['id']; public function user(): BelongsTo { return $this->belongsTo(User::class)->withoutGlobalScope(ActiveScope::class); } public function leads(): HasMany { return $this->hasMany(Lead::class); } }