@extends('front.layouts.app') @section('content')

Game Services

Enhance your gaming experience with our premium services. Choose from a variety of options to boost your character and gameplay.

Total Services: {{ $services->count() }} | Enabled Services: {{ $services->where('enabled', true)->count() }}
@if($services->count() > 0)
@foreach($services as $service) @if($service->enabled ?? true)
{!! csrf_field() !!}

{{ ucfirst(str_replace('_', ' ', $service->key)) }}

@if($service->price > 0)
{{ number_format($service->price) }}
{{ ($service->currency_type == 'virtual') ? settings('currency_name') : 'Gold' }}
@else
Free
@endif
@if($service->key == 'broadcast')

Send a message to all players currently online in the game world.

@elseif($service->key == 'virtual_to_cubi')

Convert your virtual currency to in-game Cubi for purchases.

@elseif($service->key == 'cultivation_change')

Switch between different cultivation paths for your character.

@elseif($service->key == 'gold_to_virtual')

Exchange your in-game gold for virtual currency.

@else

{{ ucfirst(str_replace('_', ' ', $service->key)) }} service for your character.

@endif
@if($service->key == 'broadcast')
@elseif(in_array($service->key, ['virtual_to_cubi','gold_to_virtual','level_up']))
@endif
@endif @endforeach
@else

No Services Available

There are currently no services available. Please check back later.

@endif
@endsection