I have a relationship in Laravel
but when I make an query comes the id
and not the field name.
Model Evento
public function tipo_evento() {
return $this->hasOne('App\TipoEvento','id','tipo_evento');
}
Model TipoEvento
public function evento() {
return $this->belongsTo('App\Evento');
}
No controller
$eventos = Evento::with('tipo_evento')->get();
The tables are
Eventos
-id (1)
-nome_evento(blabla)
-tipo_evento(1)
Tipo Evento
-id(1)
-nome(festa)
I want to use $eventos = Evento::with('tipo_evento')->get();
ven tipo_evento
party not 1 how are you coming?