@extends('layouts/web') @section('content')
@include('customer.partials.header')

{{ __('ALL GAMES') }}

@forelse ($rooms as $room)
{{ $room->price_per_lot + 0 }}
{{ $room->name }}
@if ($round = $room->activeRound->first()) @if ($round->end_at) {{ $round->end_at->format('h:ia') }} @endif @else {{ __('N/A') }} @endif
@empty
@endforelse
@endsection