Puoi utilizzare withCount()
per ottenere la somma dal modello correlato come
$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();
Un altro approccio per ottenere la somma, puoi definire un hasOne()
relazione nel tuo modello cliente come
public function invoice_sum()
{
return $this->hasOne(CustomerInvoice::class)
->select('customer_id',
DB::raw('sum(total_price)')
)->groupBy('customer_id');
}
E nel generatore di query
$result = Customer::select([
'customers.id',
'customers.last_name',
])->with('invoice_sum')
->whereHas('customerInvoices', function(Builder $q) {
$q->where('customer_invoices.status', 1);
})->get();
Secondo Eloquente :withCount() sovrascrive le $ colonne su get()
problema prima inserire select()
mehtod e quindi utilizzare with()
funzione