'int', 'id_network' => 'int' ]; protected $fillable = [ 'id_operator_country', 'id_network' ]; public function operators_country() { return $this->belongsTo(OperatorsCountry::class, 'id_operator_country'); } public function network() { return $this->belongsTo(Network::class, 'id_network'); } }