Laravel雄辩地加入三桌

时间:2017-11-09 05:27:24

标签: php laravel inner-join laravel-eloquent

我是Laravel的新手。现在我需要一些关于联合表雄辩的帮助。

这是我的表结构,

产品表

product_id    product_code    product_name
     1            1434            ABC

产品历史表

history_id    product_id    cost    invoice_number
    1              1        100         ABC-01

产品导览表

tour_id       product_id    provider_name
    1              1            TEST

现在我加入这3张桌子,

$product =  product::join('product_history as ph', 'product.product_id', '=', 'ph.product_id', 'inner')
            ->join('product_tour as pt', 'product.product_id', '=', 'pt.product_id', 'inner')
            ->where('product.product_id', '1')
            ->get()
            ->toArray();

工作正常。但我认为Laravel还提供 Eloquent Relationship 。例如,hasOnehasManybelongsTobelongsToMany等....

  

知道哪种方法用于我的结构?

提前致谢。

1 个答案:

答案 0 :(得分:2)

更改您的查询:

$product =  product::Select("*")
            //->with('product_history','product_tour')
            //Use this with() for condition.
            ->with([
                   'ProductHistory' => function ($query){
                                    $query->select('*');
                   },
                   'ProductTour' => function ($query) use ($ProviderName) {
                                    $query->select('*')->where("provider_name", "=", $ProviderName);
                   },
            ])
            ->where('product.product_id', '1')
            ->get()
            ->toArray();

以下是模型文件的代码:

namespace App;
use DB;
use Illuminate\Database\Eloquent\Model;

class Product extends Model
{
    public function producthistory()
    {
        return $this->hasMany('App\ProductHistory', 'product_id','history_id');        
    }
    public function producttour()
    {
        return $this->hasMany('App\ProductTour', 'product_id','tour_id');        
    }

}

并为名为Product_historyproduct_tour

的其他表格建模
namespace App;

use Illuminate\Database\Eloquent\Model;

class ProductHistory extends Model
{    

    public function products()
    {
        return $this->belongsTo('App\Product', 'history_id','product_id');
    }

}

并且

namespace App;

use Illuminate\Database\Eloquent\Model;

class ProductTour extends Model
{    

    public function products()
    {
        return $this->belongsTo('App\Product', 'tour_id','product_id');
    }

}