//client model
public function flights()
{
return $this->belongsToMany('App\Flight');
}
//flight model
public function clients()
{
return $this->belongsToMany('App\Client');
}
//controller
$client = App\Client::find(1);
foreach ($client->flights as $value) {
$value->ticket_name;
}