Bạn có thể sử dụng withCount()
để lấy tổng từ mô hình liên quan dưới dạng
$result = Customer::select([
'customers.id',
'customers.last_name'
])->withCount([
'customerInvoices as invoice_sum' => function($query) {
$query->select(DB::raw('SUM(total_price)'));
}
])->whereHas('customerInvoices', function(Builder $q) {
$q->where('customer_invoices.status', 1);
})->get();
Một cách tiếp cận khác để lấy tổng, bạn có thể xác định một hasOne()
mối quan hệ trong mô hình Khách hàng của bạn như
public function invoice_sum()
{
return $this->hasOne(CustomerInvoice::class)
->select('customer_id',
DB::raw('sum(total_price)')
)->groupBy('customer_id');
}
Và trong trình tạo truy vấn
$result = Customer::select([
'customers.id',
'customers.last_name',
])->with('invoice_sum')
->whereHas('customerInvoices', function(Builder $q) {
$q->where('customer_invoices.status', 1);
})->get();
Theo Eloquent:withCount () ghi đè các cột $ trên get ()
vấn đề đầu tiên đặt select()
mehtod và sau đó sử dụng with()
chức năng