{{-- user/games/index.blade.php | Obrempong | Jcode --}} @extends('layouts.app') @section('title','Games') @section('content')
{{-- Spin & Scratch Quick Links --}}
🎡
Spin Wheel
Up to 1,000 pts
🎫
Scratch Cards
Instant prizes
{{-- Game Cards --}}
All Games
@forelse($games as $game)
{{ match($game->type){'math_quiz'=>'🧮','trivia'=>'🧩','memory'=>'🃏',default=>'🎮'} }}
{{ $game->name }}
{{ $game->description }}
+{{ $game->points_per_win }} pts/win {{ $game->plays_today }}/{{ $game->daily_play_limit }} played today
@if($game->can_play) Play @else @endif
@empty
No games available yet.
@endforelse
@endsection