@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