@php $activeBanner = \App\Models\Banner::getActive(); @endphp @if($activeBanner)
@if($activeBanner->image) {{ $activeBanner->title }} @if($activeBanner->title || $activeBanner->message)
@if($activeBanner->title) {{ $activeBanner->title }} @endif @if($activeBanner->title && $activeBanner->message) | @endif @if($activeBanner->message) {{ $activeBanner->message }} @endif
@endif
@else
@if($activeBanner->link) @if($activeBanner->title){{ $activeBanner->title }} - @endif {{ $activeBanner->message }} @else @if($activeBanner->title){{ $activeBanner->title }} - @endif {{ $activeBanner->message }} @endif
@endif
@endif

Obrigado pela sua encomenda!

A sua encomenda foi criada com sucesso.

Encomenda #{{ $order->id }}
Data {{ $order->created_at->format('d/m/Y') }}
Total {{ number_format($order->total, 2) }}€
Método de Pagamento: {{ ucfirst($paymentMethod ?? $order->payment_method) }}
@if($paymentMethod === 'mbway' || $order->payment_method === 'mbway')
Pagamento por MB WAY

Faça o pagamento de {{ number_format($order->total, 2) }}€ para o número:

{{ \App\Models\Setting::get('mbway_number', '') }}


Após efetuar o pagamento, envie o comprovativo pelo WhatsApp:

A sua encomenda fica pendente até confirmarmos o pagamento.

@endif @if($paymentMethod === 'bank' || $order->payment_method === 'bank')
Dados para Transferência

Titular: {{ \App\Models\Setting::get('bank_holder', '') }}

Banco: {{ \App\Models\Setting::get('bank_name', '') }}

NIB: {{ \App\Models\Setting::get('bank_nib', '') }}

IBAN: {{ \App\Models\Setting::get('bank_iban', '') }}

@endif @if($paymentMethod === 'whatsapp' || $order->payment_method === 'whatsapp')
Finalizar Encomenda

Para processar o seu pagamento, por favor envie os detalhes da encomenda pelo WhatsApp.

A sua encomenda fica pendente até confirmar o pagamento.

@endif @if($paymentMethod === 'bunq' || $order->payment_method === 'bunq')
Pagamento por Link (bunq)

Clica no link abaixo para efetuar o pagamento.

Pagar com bunq
@endif @if($paymentMethod === 'paypal' || $order->payment_method === 'paypal')
Pagamento por PayPal
@php $ppEmail = \App\Models\Setting::get('paypal_email', ''); $ppLink = \App\Models\Setting::get('paypal_link', ''); $ppInstructions = \App\Models\Setting::get('paypal_instructions', ''); @endphp @if($ppLink)

Clica no botão abaixo para efetuar o pagamento via PayPal.

Pagar com PayPal @elseif($ppEmail)

Envia o pagamento para o email PayPal abaixo:

{{ $ppEmail }}
@endif @if($ppInstructions)

{{ $ppInstructions }}

@endif
@endif @php $digitalItems = array_filter($cartItems, fn($item) => $item['product']->is_digital && $item['product']->hasDownload()); @endphp @if(count($digitalItems) > 0)
Produtos Digitais

Os seguintes produtos digitais estarão disponíveis para download após a confirmação do pagamento:

    @foreach($digitalItems as $item)
  • {{ $item['product']->name }}
  • @endforeach

Receberá um email com os links de download assim que o pagamento for confirmado.

@endif

Um email de confirmação foi enviado para {{ $order->customer_email }}