芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/app/Models/Proposal.php
'datetime', 'last_viewed' => 'datetime', ]; public function items(): HasMany { return $this->hasMany(ProposalItem::class); } public function currency(): BelongsTo { return $this->belongsTo(Currency::class, 'currency_id'); } public function lead(): BelongsTo { return $this->belongsTo(Lead::class); } public function unit(): BelongsTo { return $this->belongsTo(UnitType::class, 'unit_id'); } public function signature(): HasOne { return $this->hasOne(ProposalSign::class); } }