情境: 每個客戶有多筆聯繫紀錄,contact table有customer_id這個foreign key。
Customer Model (Customer.php):
...
public function contacts()
{
return $this->hasMany(Contact::class, 'customer_id', 'id');
}
...
(new Customer)::with(['contacts' => function ($query) {
$query->select('customer_id', 'contact_result');
}])
這邊需特別注意,customer_id這個foreign key一定要select(不一定要是第一個欄位),否則會不work。