'int', 'salutation_id' => 'int', 'country_id' => 'int', 'birthdate' => 'datetime', 'show_stats' => 'int', 'validation_date' => 'datetime', 'contract_date' => 'datetime', 'tax_exempt' => 'int', 'disable_footer_code' => 'int', ]; protected $fillable = [ 'user_id', 'salutation_id', 'title', 'first_name', 'last_name', 'address', 'country_id', 'phone', 'email', 'birthdate', 'language', 'backlink_url', 'show_stats', 'validation_date', 'contract_date', 'registration_type', 'validate', 'api_key', 'tax_id_number', 'tax_exempt', 'tax_exempt_reason', 'disable_footer_code', ]; public function country() { return $this->belongsTo(Country::class); } public function salutation() { return $this->belongsTo(Salutation::class); } public function sf_guard_user() { return $this->belongsTo(SfGuardUser::class, 'user_id'); } }