@php
$card_class = 'absolute backface-hidden flex items-center justify-center border w-full h-52 transition duration-500 px-4 py-2'
@endphp
Winning rows:
{{ $this->state->getNumWinRows() }}
{{ __('New Game') }}
{{ __('Change Settings') }}
{{ __('Clear') }}
{{-- Gameboard grid --}}
@foreach($this->board->getCards() as $pos => $item)
@endforeach
{{-- Loading modal --}}
{{ __('Loading') }}
@if ($this->board->hasGameEnded())
{{ __('Game over!') }}
{{ __('Go again?') }}
{{ __('New Game') }}
@endif