@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
Server
Receiver Name:
Your character needs to send a Parcel containing @if(!empty($product->prefix)) {{ $product->prefix }} @endif {{ number_format($product->value, $product->decimals, ',') }} @if(!empty($product->suffix)) {{ $product->suffix }} @endif to the character in server on city .

To complete the order, click confirm, we advise you to send the Medivia Coins before ordering to avoid misunderstandings.
Payment Method {{ ucfirst($paymentMethod->name) }}
Account Email: {{ Auth::user()->email }}
Medivia Character Name:
@else @include('store.pending-transaction') @endif @endsection @section('scripts') @endsection