has-one-throughで関係を作ろうとしています。
テーブル:
packages
-guest_detail_id
guest_details
-client_id
clients
-id
Package.php で
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Packages extends Model {
/**
* Get the client.
*/
public function client() {
return $this->hasOneThrough(---what will be params---);
}
}