@extends('Layout.usergame2') @section('content')

Level Managements

@csrf

Total Player: {{ $users }}

Level 1 List @if (count($level1) > 0) @foreach ($level1 as $item) @endforeach @else @endif
userid Name
{{ $item->id }} {{ $item->name }}
No user found!
Level 2 List @if (count($level2) > 0) @foreach ($level2 as $subitem) @foreach ($subitem as $item) @endforeach @endforeach @else @endif
userid Name
{{ $item->id }} {{ $item->name }}
No user found!
Level 3 List @if (count($level3) > 0) @foreach ($level3 as $subitem) @foreach ($subitem as $item) @endforeach @endforeach @else @endif
userid Name
{{ $item->id }} {{ $item->name }}
No user found!
@endsection