'int', ]; protected $fillable = [ 'name', 'travel_country_id', 'active' ]; public function travel_programs() { return $this->hasMany(TravelProgram::class, 'travel_arrival_point_id'); } //on crm /* public function travel_country_crm() { return $this->belongsTo('App\Models\Sym\TravelCountry', 'travel_country_id', 'crm_id'); } */ //on stern DB relaunch public function travel_country() { return $this->belongsTo('App\Models\TravelCountry', 'travel_country_id', 'id'); } }