@extends('layouts.main') @section('main-content') @php $filterUrl = Request::fullUrl(); $clearFilterUrl = explode("?", $filterUrl)[0]; $showFilter = collect($queryParams)->filter(function ($value, $key){ return !empty($value); })->isNotEmpty(); $accountingPeriods = getAccountingPeriods(); @endphp
Clear Filter
@include('components.reports.filters', ['filtersNotToShow' => ['payment_channels'] ])
@include('components.reports.download-report-button')
Payment Channels Report
S/N Channel Revenue
@include('components.reports.options', ['linksToHide' => ['department', 'ministry', 'service', 'payment_channel', 'monthly'] ]) @endsection @section('more-scripts') ; @stop