@extends('layouts.app_web') @section('head') @endsection @section('content')
@include('layouts.navigation_web')

{{$post->titulo_principal}}

{{$post->resumen_corto}}

{!! $post->contenido_post !!}

Productos:

@foreach ($post->products as $producto)
{{$producto->name}}
@php $numero = rand(70, 1000); // Genera un número aleatorio entre 101 y 999 $vendidos = 200; // número fijo que tú defines manualmente @endphp {{ $numero }} vendidos @if ($numero > $vendidos) 🔥 @endif
@endforeach

Galeria:

@foreach ($post->gallery as $gallery)
@if ($gallery->type == "image") @else @php $videoUrl = $gallery->image; // Esto vendría de la base de datos $videoId = str_replace("https://youtu.be/", "", $videoUrl); @endphp @endif
@endforeach
{{-- Be the first to write a comment. --}}
@section('scripts') @if(session('mensaje')) @endif @endsection @endsection