du kan också använda den vältaliga modellen för att definiera relationen.
För mer information besök även https://laravel.com/docs/5.3/eloquent-relationships
crate two model --1st är "Flights"
<?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');
}
}
Den andra modellen är "City"
<?php
class City extends Model
{
protected $table = 'city';
}
Nu för hämtning
Flights::where(id, $id)->with('toCity', 'fromCity')->get();