@extends('layouts.master') @section('title') LT-168 :: หน้าแทงสำหรับพนักงาน @endsection @section('sub_title') หน้าแทงสำหรับพนักงาน @endsection @section('title_right_side') @endsection @section('customStyle') @endsection @if (!$openingRounds->count()) @section('content')

ไม่มีหวยที่เปิดงวดอยู่ในขณะนี้

@endsection @else @section('content')

ตั้งค่าการปริ้นท์

@foreach ($lotteries as $key => $lottery) @php $lotteryRoundAvailable = $lottery ->lotteryRound() ->whereStatus(\App\LotteryRound::STATUS_ENABLED) ->where('close', '>=', date('Y-m-d H:i:s')) ->first(); $lotterySettingExists = $store ->storeCommission() ->whereCountry($lottery->country) ->first(); $enable = $lotteryRoundAvailable && $lotterySettingExists; if ($lottery->type && !$store->lotteryCommission->first()) { $enable = false; } $encodedNumberLimit = $enable ? $lotteryRoundAvailable->numberLimit ->where('user_id', 1) // Admin ->where('limit_type', '!=', \App\NumberLimit::LIMIT_PAYMENT) ->toJson() : null; @endphp
@endforeach

เลข บน/โต๊ด จำนวนเงิน ล่าง

เลขอั้นจำกัดอัตราจ่าย

@foreach ($numberLimitByPayment as $item) @endforeach
หมายเลข ประเภท อัตราจ่าย
A B C
{{ $item->limit_number }} {{ $item->lottery_type }} {{ nf($item->limit_remain['a'], true) }} {{ nf($item->limit_remain['b'], true) }} {{ nf($item->limit_remain['c'], true) }}

รายการแทง

เลข ประเภท แทง ส่วนลด สุทธิ บาทละ #
ยอดแทง: ส่วนลด: จ่าย:

รายการที่ไม่สามารถแทงได้

เลข ประเภท แทง แทงได้อีก

วิธีเลือกหวย

  1. กดปุ่ม ESC เพื่อเปลี่ยนหวย
  2. กดหมายเลขหวยที่ต้องการ
  3. กดปุ่ม Enter
@endsection @section('scripts') @endsection @endif