आप रिश्ते को परिभाषित करने के साथ वाक्पटु मॉडल का भी उपयोग कर सकते हैं।
साथ ही अधिक विवरण के लिए 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');
}
}
दूसरा मॉडल "सिटी" है
<?php
class City extends Model
{
protected $table = 'city';
}
अब लाने के लिए
Flights::where(id, $id)->with('toCity', 'fromCity')->get();