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