@extends('admin.layouts.main-layout') @section('content')

User Winner List

Excel
@if(session()->has('message'))
{{ session()->get('message') }}
@endif
Reset
@php $page=1; if(Request::input('page')) $page=Request::input('page'); $sort = $lists->perPage(); @endphp @forelse($lists as $key => $list) @empty @endforelse
# Stores Name User Name Bit Place Type Winning Amount
{{ $sort*($page-1)+($key+1) }} {{$list->Stores->name}} {{$list->username->name}} {{$list->open_time}} {{$list->type}} {{$list->amount}}
Record not found
Showing {{$lists->firstItem()}} to {{$lists->lastItem()}} of {{$lists->total()}}
{!! $lists->appends(request()->input())->links() !!}
@endsection @section('js-content') @endsection