@extends('layout.backoffice') @section('content')
| Nombre | Imagen | Prioridad | Estado | Vigencia | Reglas | Acciones |
|---|---|---|---|---|---|---|
| {{$sticker["nombre"]}} | {{$sticker["prioridad"] ?? 0}} | {{ $estado ? 'Activo' : 'Inactivo' }} | {{\Carbon\Carbon::parse($sticker["fecha_inicio"])->format('d/m/Y') . ' al ' . \Carbon\Carbon::parse($sticker["fecha_fin"])->format('d/m/Y')}} |
@php
$reglas = $sticker['reglas'] ?? null;
$reglas = is_string($reglas) ? json_decode($reglas, true) : $reglas;
@endphp
@if(!empty($reglas['marcas']))
Marcas: {{ implode(', ', $reglas['marcas']) }} @endif @if(!empty($reglas['categorias'])) Categorías: {{ implode(', ', $reglas['categorias']) }} @endif @if(!empty($reglas['productos'])) Productos: {{ implode(', ', $reglas['productos']) }} @endif |