@extends('layouts.app') @section('title', $producto->nombre . ' | ' . $comercio->nombre) @push('styles') @endpush @section('content')
← Volver a productos de {{ $comercio->nombre }}
{{-- Columna imágenes --}}
{{-- Miniaturas --}} @if($galeria->count() > 0)
{{-- Thumb principal (slide 0) --}} {{-- Thumbs galería (slides 1..N) --}} @foreach($galeria as $index => $img) @endforeach
@endif
{{-- Columna info --}}

{{ $producto->nombre }}

@if(!is_null($producto->precio))

${{ number_format($producto->precio, 0, ',', '.') }}

@else

Precio a consultar

@endif

Comercio: {{ $comercio->nombre }}

@if($producto->tipo)

Tipo: {{ ucfirst($producto->tipo) }}

@endif
@if($producto->descripcion)
Descripción

{!! nl2br(e($producto->descripcion)) !!}

@endif
@endsection