pivot en relacion
This commit is contained in:
parent
9155f974b6
commit
382b973227
|
@ -29,6 +29,6 @@ public function barrio(): BelongsTo
|
||||||
*/
|
*/
|
||||||
public function productos(): BelongsToMany
|
public function productos(): BelongsToMany
|
||||||
{
|
{
|
||||||
return $this->belongsToMany(Producto::class);
|
return $this->belongsToMany(Producto::class)->withPivot(['cantidad','total']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,7 @@ public function categoria(): BelongsTo
|
||||||
*/
|
*/
|
||||||
public function pedidos(): BelongsToMany
|
public function pedidos(): BelongsToMany
|
||||||
{
|
{
|
||||||
return $this->belongsToMany(Pedido::class);
|
return $this->belongsToMany(Pedido::class)->withPivot(['cantidad','total']);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue