*/ protected $fillable = [ 'contact_id', 'vault_quick_facts_template_id', 'content', ]; /** * Get the contact associated with the quick fact. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\Contact, $this> */ public function contact(): BelongsTo { return $this->belongsTo(Contact::class); } /** * Get the quick fact template associated with the quick fact. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\VaultQuickFactsTemplate, $this> */ public function vaultQuickFactsTemplate(): BelongsTo { return $this->belongsTo(VaultQuickFactsTemplate::class); } }