hasMany(Transaction::class, 'dealer_id', 'id'); } public function products(){ return $this->belongsToMany(Product::class, 'stock') ->withPivot('quantity') ->withTimestamps(); } }