@extends('system.public.public_layout')
@section('body-class', 'equipos-page equipo-detalle-page')
@push('styles')
@endpush
@section('content')
@php
$wa = $whatsapp;
$waUrl = fn ($t) => 'https://wa.me/' . $wa . '?text=' . rawurlencode($t);
$waKit = $waUrl('Hola, me interesa el ' . $kit['name'] . '. ¿Precio y qué incluye?');
$relSlug = fn ($p) => strtolower(str_replace('/', '-', $p['sku'] ?? ''));
$check = '';
@endphp
{{-- IMAGEN --}}
{{ $kit['badge'] }}
{{-- INFO --}}
Kit de equipos
{{ $kit['name'] }}
Disponible
{{ $kit['pitch'] }}
@if($save >= 20)
{!! $check !!} Ahorra S/ {{ number_format($save, 0) }} vs comprar por separado
@endif
@if($save >= 20)Antes S/ {{ number_format($sumParts, 0) }}@endif
Desde S/{{ number_format($kit['price'], 0) }}
IGV incluido · Precio referencial
Cotizar kit
{!! $check !!} Garantía 12 meses
{!! $check !!} Envío a todo el Perú
{!! $check !!} Probado con Sysfarma
{!! $check !!} Soporte e instalación
@if(! empty($kit['includes']))
Qué incluye este kit
@foreach($kit['includes'] as $inc)
- {!! $check !!} {{ $inc }}
@endforeach
@endif
{{-- PRODUCTOS DEL KIT --}}
@if(! empty($items))
@endif
Volver a la tienda de equipos
{{-- Barra Cotizar fija (móvil) --}}
Desde S/{{ number_format($kit['price'], 0) }}IGV incluido
Cotizar kit
@endsection