@extends('layouts/layout') @section('content')

Rooms

@forelse ($rooms as $room) @empty @endforelse
Room Game Recurring Time (minutes) Lots Per Number Price Per Lot Fee Waived Status Updated At Action
{{ $room->name }}
{{ $room->description }}
Star Clash {{ $room->type == \App\Models\Room::TYPE_ROLLING ? 'Snatch' : 'Normal' }} {{ $room->recurring_in_minutes }} {{ number_format($room->lots_per_number) }} ${{ number_format($room->price_per_lot) }} {{ $room->transaction_fee_waived ? 'Yes' : 'No' }} {{ $room->status_text }} {{ $room->updated_at->format('d M Y') }}
There are no rooms yet.
{{ $rooms->links() }}
@endsection