@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