@extends('dashboard.admin.layout') @section('title', 'Site Settings') @section('content')
Trading Simulator Control

Control candle direction and spike behavior for user Future Trade UI.

@csrf
spike_enabled))>

Current Price: {{ number_format((float) $simulator->current_price, 4) }}
Tick Count: {{ number_format((int) $simulator->tick_count) }}
Last Tick: {{ $simulator->last_tick_at?->format('Y-m-d H:i:s') ?? 'N/A' }}
Last Updated By: {{ $simulator->updater?->email ?? 'N/A' }}
Bot Guard Manual Blocking

No automatic blocking. Requests are only blocked when IP or country below is manually blocked by admin.

Blocked IPs
Manually blocked IP addresses.
@forelse($blockedIps as $item) @empty @endforelse
IP Note Action
{{ $item->value }} {{ $item->note ?: '-' }}
@csrf
No blocked IPs.
Blocked Countries
Country level blocks controlled by admin only.
@forelse($blockedCountries as $item) @empty @endforelse
Country Code Action
{{ $item->label ?: ($countries[$item->value] ?? $item->value) }} {{ $item->value }}
@csrf
No blocked countries.
@endsection