@extends('template.layout')
@section('title', 'Who is online?')
@section('submenuItem', 'whoisonline')
@section('content')
|
|
| World |
Online |
Location |
PvP Type |
Additional Information |
@foreach(config('multi_world.worlds') as $world)
@php
$rowClass = $loop->index % 2 == 0 ? 'Even' : 'Odd';
@endphp
| {{ $world['name'] }} |
{{ number_format(App\Utils\PlayersOnlineCache::get($world['id'])) }} |
{{ $world['location'] }} |
{{ $world['pvp_type'] }} |
|
@endforeach
|
|
@endsection