@extends('layouts.app') @section('titulo', 'Productos') @section('subtitulo', 'Gestión del menú') @section('botones') Nuevo producto @endsection @section('contenido')
@forelse($productos as $p) @empty @endforelse
ProductoCategoría PrecioStock EstadoVendidos
@if($p->imagen) {{ $p->nombre }} @else @endif {{ $p->nombre }} @if($p->destacado)@endif @if($p->precio_oferta)OFERTA@endif
{{ $p->codigo ?? '—' }} @if($p->es_vegetariano)@endif @if($p->es_vegano)@endif @if($p->es_sin_gluten)@endif @if($p->picante)@endif
{{ $p->categoria->nombre }} @if($p->precio_oferta) {{ $config->formatearPrecio($p->precio) }}
{{ $config->formatearPrecio($p->precio_oferta) }} @else {{ $config->formatearPrecio($p->precio) }} @endif
@if($p->controla_stock) {{ $p->stock }} @else @endif @if($p->activo)Activo@elseInactivo@endif {{ $p->vendidos }}
@csrf @method('DELETE')

No hay productos. Crear el primero
@endsection