@if(session()->has('message'))
{{ session()->get('message') }}
@endif
| #
|
Store Name
|
Open Time
|
Bit Place
|
Total Amount
|
@php
$page=1;
if(Request::input('page'))
$page=Request::input('page');
$sort = $lists->perPage();
@endphp
@forelse($lists as $key => $list)
@foreach($list->SingleDigitBit as $key=>$SingleDigitBit)
@if($key==0)
| {{ $sort*($page-1)+($key+1) }} |
{{$list->store->name}} |
{{$list->open_time}} |
{{$SingleDigitBit->bit_place}} |
{{$SingleDigitBit->amount}} |
@else
| {{$SingleDigitBit->bit_place}} |
{{$SingleDigitBit->amount}} |
@endif
@endforeach
| Grand Amt |
{{$list->amount}} |
@empty
| Record not found |
@endforelse
Showing {{$lists->firstItem()}} to {{$lists->lastItem()}} of {{$lists->total()}}
{!! $lists->appends(request()->input())->links() !!}