@extends('layouts.app') @push('styles') @endpush @section('content')

{{ ucfirst($shop->name) }}


{{ $shop->avatar }} Ir al sitio web @if ($shop->raw) {!! $shop->raw !!} @endif
@if ($shop->long_detail)
{!! $shop->long_detail !!}
@else {{ $shop->detail }} @endif
{!! $products->render() !!}
@foreach($products as $product)
@if ($product->discount_price > 0) promo @endif

{{ucfirst($product->name)}}

{{$product->short_detail}}

@if (!$product->is_catalog) @if ($product->stock > 0) @if($product->buy_one_click) {{ $product->getLabelBuyButton() }} @else @if($product->children->count()<=0) {{--
@csrf
--}} @else Ver opciones @endif @endif @else @endif @else Información @endif {{----}}
@endforeach
{!! $products->render() !!}
@endsection