możesz również użyć elokwentnego modelu przy definiowaniu relacji.
Więcej informacji znajdziesz również na stronie https://laravel.com/docs/5.3/eloquent-relationships
skrzynia dwa modele – pierwszy to „Loty”
<?php
class Flights extends Model
{
protected $table = 'flights';
/**
* Get the From City detail.
*/
public function fromCity()
{
return $this->hasOne('App\Models\City', 'Pana', 'from_city');
}
/**
* Get the To city state.
*/
public function toCity()
{
return $this->hasOne('App\Models\City', 'Pana', 'to_city');
}
}
Drugi model to „Miasto”
<?php
class City extends Model
{
protected $table = 'city';
}
Teraz do pobrania
Flights::where(id, $id)->with('toCity', 'fromCity')->get();