@if(session()->has('message'))
{{ session()->get('message') }}
@endif
@php
$page=1;
if(Request::input('page'))
$page=Request::input('page');
$sort = $lists->perPage();
@endphp
@forelse($lists as $key => $list)
{{$list->name}}({{isset($list->storeGame) ? timeShow($list->storeGame->opent_time) : '' }}) (SP)
| S.No
|
User Name
|
0
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
Total
|
@if(count($list->choicepannabit)>0)
@foreach($list->choicepannabit as $key => $bits)
@if(checkPannaType($bits->id,'sp')>0)
| {{++$key}} |
{{$bits->username->name}} |
@for($i=0;$i<10;$i++)
{{(int)choicePannaBitAmount($bits->id,$i,'sp')}} |
@endfor
{{(int)choicePannaAmount($bits->user_id,$bits->id,'sp')}} |
@endif
@endforeach
@endif
@empty
No Store
@endforelse
@php
$page=1;
if(Request::input('page'))
$page=Request::input('page');
$sort = $lists->perPage();
@endphp
@forelse($lists as $key => $list)
{{$list->name}}({{isset($list->storeGame) ? timeShow($list->storeGame->close_time) : '' }}) (DP)
| S.No
|
User Name
|
0
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
Total
|
@if(count($list->choicepannabit)>0)
@foreach($list->choicepannabit as $key => $bits)
@php $pannacount = checkPannaType($bits->id,'dp');@endphp
@if($pannacount>0)
| {{++$key}} |
{{$bits->username->name}} |
@for($i=0;$i<10;$i++)
{{(int)choicePannaBitAmount($bits->id,$i,'dp')}} |
@endfor
{{choicePannaAmount($bits->user_id,$bits->id,'dp')}} |
@endif
@endforeach
@if($pannacount>0)
@else
| No Data |
@endif
@endif
@empty
No Store
@endforelse