@extends('admin.layouts.main-layout') @section('content')
@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) @empty @endforelse
# User Name User Mobile Amount
{{ $sort*($page-1)+($key+1) }} {{isset($list->username) ? $list->username->name : ''}} {{isset($list->username) ?$list->username->mobile_number : ''}} {{$list->amount}}
Record not found
Showing {{$lists->firstItem()}} to {{$lists->lastItem()}} of {{$lists->total()}}
{!! $lists->appends(request()->input())->links() !!}
@endsection @section('js-content') @endsection