1. 1st we create tournament in that case we make a tournament_status = 0 in tbl_tournament,
2. when the tournament start we change the tournament_status = 1 in tbl_tournament,
3. after 60 seconds we change play_status = 1,
4. user_status = 1; // For Registered User
5. user_status = 0; // For Non Registered User
6. registered_user = total number of user registered for the tournament



case 1 : user_status = 0 and tournament_status = 0 means, user can abe to register
case 2 : user_status = 1 and tournament_status = 0 means, user already registered and we show the start time 
case 3 : user_status = 1 and tournament_status = 1 and play_status = 0 means, we are enable the play button
case 4 : user_status = 1 and tournament_status = 1 and play_status = 1 means, play button is off now change the play button as 'view'



Current Stats API :---
For final round the "next_round" = 0 should be 
"play_status":  (2 / 1 ) 1 = playing and 2 = game complete


//// This response is for 4th Round
{
  "error": false,
  "message": "Current Stats",
  "data": {
    "user_data": [
      [
        {
          "name": "Broken",
          "profile_picture": "http://3.137.86.237:5000/profile_photo/1687761009968-6AA9A2D9-BD99-499D-B4B4-234AEFEFBE6E.jpeg",
          "next_round": 5,
          "play_status": 2
        },
        {
          "name": "Bhaswati5",
          "profile_picture": "http://3.137.86.237:5000/profile_photo/1687441757537-587B53A3-04F2-4AC1-A514-10B7AF4CD77D.jpeg",
          "next_round": 0,
          "play_status": 2 (2 / 1 ) 1 = playing and 2 = game complete
        }
      ],
      [
        {
          "name": "Test6",
          "profile_picture": "http://3.137.86.237:5000/profile_photo/1686032800119-justgame.png",
          "next_round": 5,
          "play_status": 1 (2 / 1 ) 1 = playing and 2 = game complete
        },
        {
          "name": "Arkadip",
          "profile_picture": "http://3.137.86.237:5000/profile_photo/1686639225006-justgame.png",
          "next_round": 0,
          "play_status":  (2 / 1 ) 1 = playing and 2 = game complete
        }
      ]
    ],
    "direct_move": {
      
    }
  }
}