@extends('admin.layouts') @section('title', 'Admin Dashboard') @section('page_title', 'Dashboard') @section('content')
| ID | Round ID | Result | Total Bet | Total Won | Profit | Start Time | End Time |
|---|---|---|---|---|---|---|---|
| {{ $round->id }} | #{{ $round->roundId }} | @if($round->result) {{ $round->result }} @else Pending @endif | ₹{{ number_format($round->totalBet,2) }} | ₹{{ number_format($round->totalBetWon,2) }} | ₹{{ number_format($round->totalBet - $round->totalBetWon,2) }} | {{ \Carbon\Carbon::createFromTimestamp($round->start_time)->timezone('Asia/Ho_Chi_Minh')->format('d M Y H:i:s') }} | {{ \Carbon\Carbon::createFromTimestamp($round->end_time)->timezone('Asia/Ho_Chi_Minh')->format('d M Y H:i:s') }} |