Anda juga dapat menggunakan model fasih dengan mendefinisikan hubungan.
Juga untuk detail lebih lanjut kunjungi https://laravel.com/docs/5.3/eloquent-relationships
peti dua model -- pertama adalah "Penerbangan"
<?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');
}
}
Model ke-2 adalah "Kota"
<?php
class City extends Model
{
protected $table = 'city';
}
Sekarang untuk mengambil
Flights::where(id, $id)->with('toCity', 'fromCity')->get();