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)
|
||||
{
|
||||
return $producto;
|
||||
return new ProductoResource($producto);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -20,10 +20,12 @@ class ProductoResource extends JsonResource
|
|||
'precio' => $this->precio,
|
||||
'categoria' => $this->categoria,
|
||||
'proveedor' => optional($this->proveedor)->nombre,
|
||||
'economia_solidaria' => optional($this->proveedor)->economia_solidaria,
|
||||
'nacional' => optional($this->proveedor)->nacional,
|
||||
'imagen' => optional($this->poster)->url(),
|
||||
'descripcion' => $this->descripcion,
|
||||
'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->text('descripcion')->nullable();
|
||||
$table->boolean('apto_veganxs')->nullable();
|
||||
$table->boolean('apto_caliacxs')->nullable();
|
||||
$table->boolean('apto_celiacxs')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
|
|
@ -18,6 +18,7 @@ PEÑAROL|OESTE|||
|
|||
LAS PIEDRAS|OESTE|||
|
||||
A.C.T.E.O|OESTE|||
|
||||
NUEVO PARIS|OESTE|||
|
||||
SANTA CATALINA|OESTE|||
|
||||
BELVEDERE|OESTE|||
|
||||
BATLLE BERRES|OESTE|||
|
||||
CERRO PTI|OESTE|||
|
||||
|
@ -34,6 +35,7 @@ CIUDAD VIEJA|SUR|||
|
|||
COOP EJIDO|SUR|||
|
||||
COVIREUS|SUR|||
|
||||
LA BLANQUEADA|SUR|||
|
||||
NITEP|SUR|||
|
||||
LA CURVA|SUR|||
|
||||
PANADERIA VIDAL|SUR|||
|
||||
SUA|SUR|||
|
||||
|
|
|
Loading…
Reference in New Issue