作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我的 Laravel 应用程序中有 2 个表,即 customers 和 stores。客户可以属于许多商店,而商店可以有很多客户。它们之间有一个数据透视表来存储该关系。
问题是,如何使用 Eloquent 提取给定商店的客户列表?可能吗?我目前能够使用 Laravel 的 Query Builder 提取它。这是我的代码:
| customers | stores | customer_store |
-------------------------------------------
| id | id | customer_id |
| name | name | store_id |
| created_at| created_at | created_at |
| updated_at| updated_at | updated_at |
客户模型:
public function stores(){
return $this->belongsToMany(Store::class)
->withPivot('customer_store', 'store_id')
->withTimestamps();
}
店铺模式:
public function customers(){
return $this->belongsToMany(Customer::class)
->withPivot('customer_store', 'customer_id')
->withTimestamps();
}
数据库查询(使用查询生成器):
$customer = DB::select(SELECT customers.id, customers.name, customers.phone, customers.email, customers.location FROM customers LEFT JOIN customer_store on customers.id = customer_store.customer_id WHERE customer_store.store_id = $storeID);
最佳答案
试试这个:
public function result(Request $request) {
$storeId = $request->get('storeId');
$customers = Customer::whereHas('stores', function($query) use($storeId) {
$query->where('stores.id', $storeId);
})->get();
}
关于php - 拉维尔 5 : How to do a join query on a pivot table using Eloquent?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41235577/
我是一名优秀的程序员,十分优秀!