hasOne('App\User', 'account_id'); } public function country() { return $this->belongsTo('App\Models\Country', 'country_id'); } public function shipping_country() { return $this->belongsTo('App\Models\Country', 'shipping_country_id'); } public function pre_phone() { return $this->belongsTo('App\Models\Country', 'pre_phone_id'); } public function pre_mobil() { return $this->belongsTo('App\Models\Country', 'pre_mobil_id'); } public function shipping_pre_phone() { return $this->belongsTo('App\Models\Country', 'shipping_pre_phone_id'); } public function getBirthdayAttribute($value) { if(!$value){ return ""; } return Carbon::parse($value)->format(\Util::formatDateDB()); } public function setBirthdayAttribute( $value ) { $this->attributes['birthday'] = isset($value) ? (new Carbon($value))->format('Y-m-d') : NULL; } public function getDataProtectionFormat(){ if(!$this->attributes['data_protection']){ return ""; } return Carbon::parse($this->attributes['data_protection'])->format(\Util::formatDateTimeDB()); } public function getCountryAttrAs($attr, $as = false){ if($this->country){ $val = $this->country->getAttrByKey($attr); if($val){ if($as){ return $as; } return true; } } return ""; } }