можете също да използвате красноречивия модел с дефиниране на връзката.
Също така за повече подробности посетете https://laravel.com/docs/5.3/eloquent-relationships
щайга два модела --1-ви е "Полети"
<?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');
}
}
2-ри модел е "City"
<?php
class City extends Model
{
protected $table = 'city';
}
Сега за изтегляне
Flights::where(id, $id)->with('toCity', 'fromCity')->get();