@extends('layouts.app') @section('titulo', 'Ofertas') @section('contenido')
{{-- ========================================================= ENCABEZADO ========================================================== --}}
Fidelización

Ofertas

Administra descuentos, promociones y precios especiales.

{{-- ========================================================= MENSAJES ========================================================== --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- ========================================================= RESUMEN ========================================================== --}}

Total ofertas

{{ $ofertas->total() }}

Activas

{{ $ofertas->where('estado', 1)->count() }}

Inactivas

{{ $ofertas->where('estado', 0)->count() }}

Prioridad

{{ $ofertas->max('prioridad') ?? 0 }}

{{-- ========================================================= TABLA ========================================================== --}}

Listado de ofertas

Las ofertas activas podrán ser consultadas automáticamente desde el POS.

@if($ofertas->count())
@foreach($ofertas as $oferta) {{-- OFERTA --}} {{-- TIPO --}} {{-- VALOR --}} {{-- VIGENCIA --}} {{-- PRIORIDAD --}} {{-- ACUMULABLE --}} {{-- ESTADO --}} {{-- ACCIONES --}} @endforeach
Oferta Tipo Valor Vigencia Prioridad Acumulable Estado Acciones
{{ $oferta->nombre }}
@if($oferta->descripcion)
{{ Str::limit($oferta->descripcion, 90) }}
@endif
@switch($oferta->tipo) @case('porcentaje') Porcentaje @break @case('monto') Monto @break @case('precio_especial') Precio especial @break @default {{ $oferta->tipo }} @endswitch @if($oferta->tipo === 'porcentaje') {{ number_format($oferta->valor, 2) }}% @elseif($oferta->tipo === 'monto') S/ {{ number_format($oferta->valor, 2) }} @else S/ {{ number_format($oferta->valor, 2) }} @endif
@if($oferta->fecha_inicio || $oferta->fecha_fin)
{{ $oferta->fecha_inicio ? \Carbon\Carbon::parse($oferta->fecha_inicio)->format('d/m/Y') : 'Sin inicio' }} → {{ $oferta->fecha_fin ? \Carbon\Carbon::parse($oferta->fecha_fin)->format('d/m/Y') : 'Sin fin' }}
@else Sin límite de fecha @endif @if($oferta->hora_inicio || $oferta->hora_fin)
{{ $oferta->hora_inicio ? substr($oferta->hora_inicio, 0, 5) : '--:--' }} → {{ $oferta->hora_fin ? substr($oferta->hora_fin, 0, 5) : '--:--' }}
@endif
{{ $oferta->prioridad }} @if($oferta->acumulable) @else No @endif @if($oferta->estado) Activa @else Inactiva @endif
{{-- VER CONDICIONES --}} {{-- ACTIVAR / DESACTIVAR --}}
@csrf @method('PATCH')
{{-- ELIMINAR --}}
@csrf @method('DELETE')
{{-- PAGINACIÓN --}}
{{ $ofertas->appends(request()->except('ofertas_page'))->links() }}
@else

No hay ofertas registradas

Crea tu primera oferta para comenzar.

@endif
{{-- ========================================================= MODAL DETALLE ========================================================== --}}

Detalle de oferta

Tipo

Valor

Descripción

Prioridad

Acumulable

Vigencia

Inicio:
Fin:
Horario:
{{-- ========================================================= ALPINE ========================================================== --}} @endsection