*/ protected $fillable = [ 'ip_address', 'tied_to', ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ 'ip_address', 'ip_address_index', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'ip_address' => CipherSweetEncrypted::class, ]; }