'datetime', ]; public function user() { return $this->belongsTo('App\User'); } public function company_country() { return $this->belongsTo('App\Models\Country', 'company_country_id'); } public function country() { return $this->belongsTo('App\Models\Country', 'country_id'); } public function company_pre_phone() { return $this->belongsTo('App\Models\Country', 'company_pre_phone_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 getCompanyAttribute(){ if(empty($this->attributes['company']) && @$this->attributes['company'] !== 0){ return 1; } return $this->attributes['company']; } }