|bool */ protected $guarded = ['id']; protected $table = 'contact_field_labels'; /** @var array */ public static $standardLabels = [ 'home', 'work', 'cell', 'fax', 'pager', 'main', 'other', ]; /** * Get the account record associated with the contact field type. * * @return BelongsTo */ public function account() { return $this->belongsTo(Account::class); } }