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

Name : {{$storess->name}}

@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
S.No Date Time Comment Blance
{{ $sort*($page-1)+($key+1) }} {{dateShow($list->created_at)}} {{timeShow($list->created_at)}} {{$list->remark}} {{$list->reamount}}
Record not found
Showing {{$lists->firstItem()}} to {{$lists->lastItem()}} of {{$lists->total()}}
{!! $lists->appends(request()->input())->links() !!}
@endsection @section('js-content') @endsection