@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','遊戲開始') {{-- vendor styles --}} @section('vendor-styles') @endsection {{-- page styles --}} @section('page-styles') @endsection @section('content')

遊戲開始

@csrf @if($gameInfo===NULL)
@else
場次 {{ $gameInfo->date }}#{{$gameInfo->seq }}
開局時間
{{ $gameInfo->created_at }}
Game ID: {{ $gameInfo->gameId }}
狀態:

{{ $gameInfo->statusName }}

@if($gameInfo->status=="begin")
@endif @if($gameInfo->status=="getBanker")
@endif @if($gameInfo->status=="startBet")
@endif @if($gameInfo->status=="stopBet")
@endif @if($gameInfo->status=="play")
角色A
角色B
角色C
@endif
@endif
@endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection