@extends('admin.layouts.app', ['title' => $title]) @push('head') @endpush @section('content') @php $emptyDaywisePayinPaginator = new \Illuminate\Pagination\LengthAwarePaginator(collect(), 0, 20, 1, [ 'path' => route($reportRoute), ]); $emptyDaywisePayinTableHtml = view('admin.reports.partials._daywise_payin_table', ['rows' => collect(), 'allUsers' => false])->render(); $emptyDaywisePayinSummaryHtml = view('admin.reports.partials._daywise_payin_summary', ['rows' => collect()])->render(); $emptyDaywisePayinPaginationHtml = view('admin.reports.partials._daywise_report_pagination', ['rows' => $emptyDaywisePayinPaginator])->render(); @endphp

{{ $title }}

{{ $subtitle }}
Export Filter
Reports
Export Xls
@include('admin.reports.partials._daywise_payin_table', ['rows' => $rows, 'allUsers' => $allUsers ?? (!empty($filters['all_users']))])
@include('admin.reports.partials._daywise_payin_summary', ['rows' => $rows])
@include('admin.reports.partials._daywise_report_pagination', ['rows' => $rows])
@endsection @push('scripts') @endpush