@extends('template.layout') @section('title', 'Store') @section('submenuItem', 'getcoins') @section('content') @php $webTransaction = \App\Models\WebManualTransaction::whereAccountId(Auth::user()->id)->whereStatus(0)->first(); @endphp @if(!$webTransaction) @include('store.confirm.progress-bar')
Order for Account Number: ********* ********* {{ Auth::user()->id }}
@csrf
Confirm your order
IMPORTANT! We only accept one order at a time, you can only accept another after confirmation or rejection.
Service {{ $product->coins }} Coins
Price @if(!empty($product->prefix)) {{ $product->prefix }} @endif {{ number_format($product->value, $product->decimals, ',') }} @if(!empty($product->suffix)) {{ $product->suffix }} @endif
Receiver Name: {{ config('shop.payment_options')['tibia_coins']['receiver_name'] }}
To complete the order, click confirm, we advise you to send the Tibia Coins before ordering to avoid misunderstandings.
Payment Method {{ ucfirst($paymentMethod->name) }}
Account Email: {{ Auth::user()->email }}
Tibia Character Name:
@else @include('store.pending-transaction') @endif @endsection