@extends('layouts.admin_layout') @section('content')
@include('admin.layouts.sidebar')

Repports

@include('admin.layouts.messages')
@include('admin.layouts.filters.repports-filter')

@if ($records->count() > 0) {!! $records->withQueryString()->links() !!} @if(count($records) > 0) @php $y = $records->currentPage() * $records->perPage() - ($records->perPage() - 1); $data_sot_Ymd = date('Y-m-d'); @endphp @foreach($records as $record) @php $y++; @endphp @endforeach @else @endif
Nr user_id Client Name Manager Name Amount Payment Gateway Created date
{{$y}} {{$record->user_id}} {{$record->client_name}} {{$record->manager_name}} {{$record->amount}} {{$record->mode}} {{$record->created_at}}
No results found
{!! $records->withQueryString()->links() !!} @else

No records found!

@endif
{{--
                    @php
                        print_r($records);
                    @endphp
                  
--}}
@endsection