@extends('layouts.app') @section('title', 'Home') @section('content') {{-- Balance Bar --}}

Welcome back

{{ auth()->user()->name }}

Deposit Balance

৳{{ number_format(auth()->user()->balance, 2) }}

Winning Balance

৳{{ number_format(auth()->user()->winning, 2) }}

{{-- Notices --}} @if($notices->count())
@foreach($notices as $notice)
{{ $notice->title }}: {{ $notice->content }}
@endforeach
@endif {{-- Sliders --}} @if($sliders->count())
@foreach($sliders as $slider)
@if($slider->link) @endif Banner @if($slider->link) @endif
@endforeach
@endif {{-- Game Tabs + Tournament List --}}
{{-- Game Filter Tabs --}}
All @foreach($games as $game) @if($game->icon) @endif {{ $game->name }} @endforeach
{{-- Section Header --}}

Active Tournaments

View all
{{-- Tournament Cards --}}
@forelse($tournaments as $tournament) @include('user.components.tournament-card', compact('tournament')) @empty

No active tournaments right now.

Check back soon!

@endforelse
{{ $tournaments->links('user.components.pagination') }}
@endsection @push('scripts') @endpush