@extends('admin.layouts.app') @section('title', $combo->name) @section('header', $combo->name) @section('content')
← Voltar para Combos
@if($combo->image)
{{ $combo->name }}
@endif @if($combo->description)

Descrição

{!! nl2br(e($combo->description)) !!}
@endif

Produtos Incluídos

@foreach($combo->items as $item)

{{ $item->product->name }}

SKU: {{ $item->product->sku ?? 'N/A' }}

x{{ $item->quantity }}

R$ {{ number_format($item->product->price * $item->quantity, 2, ',', '.') }}

@endforeach
@if($combo->gifts && count($combo->gifts) > 0)

Brindes Incluídos

    @foreach($combo->gifts as $gift)
  • {{ $gift }}
  • @endforeach
@endif

Ações

Editar Combo
@csrf @method('DELETE')

Preços

Preço Original R$ {{ number_format($combo->original_price, 2, ',', '.') }}
Preço com Desconto R$ {{ number_format($combo->price, 2, ',', '.') }}
@if($combo->pix_price)
Preço PIX R$ {{ number_format($combo->pix_price, 2, ',', '.') }}
@endif
Desconto {{ $combo->discount_percentage }}% OFF
@if($combo->max_installments > 1)
Parcelamento {{ $combo->max_installments }}x de R$ {{ number_format($combo->installment_value, 2, ',', '.') }}
@endif @if($combo->free_shipping_threshold)
Frete Grátis Acima de R$ {{ number_format($combo->free_shipping_threshold, 2, ',', '.') }}
@endif

Status

Status @if($combo->is_active) Ativo @else Inativo @endif
@if($combo->is_featured)
Destaque Sim
@endif

Informações

Slug {{ $combo->slug }}
ID #{{ $combo->id }}
@endsection