@extends('layouts.app') @section('title', 'Gift Card Adquirido - ' . \App\Models\Setting::get('store_name', 'LaravelStore')) @section('content')
🎁

Gift Card Adquirido!

O gift card foi criado e enviado por email.

Código do Gift Card
{{ $giftCard->code }}
{{ number_format($giftCard->amount, 2) }}€
Detalhes
Para {{ $giftCard->recipient_name }} ({{ $giftCard->recipient_email }})
Valor {{ number_format($giftCard->amount, 2) }}€
@if($giftCard->message)
Mensagem:

{{ $giftCard->message }}

@endif
@if(count($paymentMethods) > 0)
Dados para Pagamento

O gift card está ativo. Escolhe um método para efetuar o pagamento:

@foreach($paymentMethods as $key => $method) @if($key === 'mbway')
MB WAY
{{ $method['number'] }}
@elseif($key === 'paypal')
PayPal @if($method['email'])
{{ $method['email'] }}
@endif @if($method['link']) Pagar Agora @else @endif Enviar Comprovativo
@elseif($key === 'whatsapp')
WhatsApp
{{ $method['number'] }}
Pagar por WhatsApp
@elseif($key === 'bank')
Transferência Bancária
IBAN: {{ $method['iban'] }}
@elseif($key === 'bunq')
Link (bunq) Pagar Agora
@endif @endforeach
@endif
@endsection