bạn cũng có thể sử dụng mô hình hùng hồn để xác định mối quan hệ.
Ngoài ra, để biết thêm chi tiết, hãy truy cập https://laravel.com/docs/5.3/eloquent-relationships
mô hình thùng hai - thứ nhất là "Chuyến bay"
<?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');
}
}
Mô hình thứ 2 là "Thành phố"
<?php
class City extends Model
{
protected $table = 'city';
}
Bây giờ để tìm nạp
Flights::where(id, $id)->with('toCity', 'fromCity')->get();