Laravel eloquent sum column is not appearing in results – Phpmyadmin
I have the next database: Therefore I have three php models Purchase, Supplier and PurchaseDetail. My model Supplier has a relation hasMany with Purchase: public function purchases() { return $this->hasMany(Purchase::class, 'supplier_id'); } And the model Purchase has a relation hasMany…