forked from nathalie/pedi2
Endpoint de producto y productos devuelven más detalles. Agrego dos barrios.
This commit is contained in:
parent
e54cf6a86d
commit
c27e47bb2d
|
@ -30,7 +30,7 @@ class ProductoController extends Controller
|
||||||
*/
|
*/
|
||||||
public function show(Producto $producto)
|
public function show(Producto $producto)
|
||||||
{
|
{
|
||||||
return $producto;
|
return new ProductoResource($producto);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,10 +20,12 @@ class ProductoResource extends JsonResource
|
||||||
'precio' => $this->precio,
|
'precio' => $this->precio,
|
||||||
'categoria' => $this->categoria,
|
'categoria' => $this->categoria,
|
||||||
'proveedor' => optional($this->proveedor)->nombre,
|
'proveedor' => optional($this->proveedor)->nombre,
|
||||||
|
'economia_solidaria' => optional($this->proveedor)->economia_solidaria,
|
||||||
|
'nacional' => optional($this->proveedor)->nacional,
|
||||||
'imagen' => optional($this->poster)->url(),
|
'imagen' => optional($this->poster)->url(),
|
||||||
'descripcion' => $this->descripcion,
|
'descripcion' => $this->descripcion,
|
||||||
'apto_veganxs' => $this->apto_veganxs,
|
'apto_veganxs' => $this->apto_veganxs,
|
||||||
'apto_caliacxs' => $this->apto_caliacxs
|
'apto_celiacxs' => $this->apto_celiacxs
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ class CreateProductosTable extends Migration
|
||||||
$table->foreignId('imagen_id')->nullable();
|
$table->foreignId('imagen_id')->nullable();
|
||||||
$table->text('descripcion')->nullable();
|
$table->text('descripcion')->nullable();
|
||||||
$table->boolean('apto_veganxs')->nullable();
|
$table->boolean('apto_veganxs')->nullable();
|
||||||
$table->boolean('apto_caliacxs')->nullable();
|
$table->boolean('apto_celiacxs')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@ PEÑAROL|OESTE|||
|
||||||
LAS PIEDRAS|OESTE|||
|
LAS PIEDRAS|OESTE|||
|
||||||
A.C.T.E.O|OESTE|||
|
A.C.T.E.O|OESTE|||
|
||||||
NUEVO PARIS|OESTE|||
|
NUEVO PARIS|OESTE|||
|
||||||
|
SANTA CATALINA|OESTE|||
|
||||||
BELVEDERE|OESTE|||
|
BELVEDERE|OESTE|||
|
||||||
BATLLE BERRES|OESTE|||
|
BATLLE BERRES|OESTE|||
|
||||||
CERRO PTI|OESTE|||
|
CERRO PTI|OESTE|||
|
||||||
|
@ -34,6 +35,7 @@ CIUDAD VIEJA|SUR|||
|
||||||
COOP EJIDO|SUR|||
|
COOP EJIDO|SUR|||
|
||||||
COVIREUS|SUR|||
|
COVIREUS|SUR|||
|
||||||
LA BLANQUEADA|SUR|||
|
LA BLANQUEADA|SUR|||
|
||||||
|
NITEP|SUR|||
|
||||||
LA CURVA|SUR|||
|
LA CURVA|SUR|||
|
||||||
PANADERIA VIDAL|SUR|||
|
PANADERIA VIDAL|SUR|||
|
||||||
SUA|SUR|||
|
SUA|SUR|||
|
||||||
|
|
|
Loading…
Reference in New Issue