@extends('layouts.app') @section('titulo', 'Productos') @section('subtitulo', 'Gestión del menú') @section('botones') Nuevo producto @endsection @section('contenido')
| Producto | Categoría | Precio | Stock | Estado | Vendidos | ||
|---|---|---|---|---|---|---|---|
|
@if($p->imagen)
|
{{ $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_oferta) }} @else {{ $config->formatearPrecio($p->precio) }} @endif |
@if($p->controla_stock) {{ $p->stock }} @else ∞ @endif | @if($p->activo)Activo@elseInactivo@endif | {{ $p->vendidos }} | |
No hay productos. Crear el primero | |||||||