@extends('layouts.user') @section('title', 'Team Level {{ $level }} - StarHela') @section('page-title', 'Team Level ' . $level) @section('breadcrumb-current', 'Level ' . $level . ($active ? ' (Active)' : ' (Inactive)')) @section('content')
Level {{ $level }} {{ $active ? 'Active' : 'Inactive' }} Members
@forelse($members as $i => $member) @empty @endforelse
# Username Mobile Country Joined
{{ $i + 1 }} {{ $member->username }} {{ $member->mobile }} {{ strtoupper($member->country) }} {{ $member->doj }}
No members found.
@endsection