@extends('layouts.main') @section('main-content') @php $queryParams = session(\App\Helpers\ReportQueryBuilders::REVENUE_RPT_FILTER_SESS_KEY); $filterUrl = Request::fullUrl(); $clearFilterUrl = explode("?", $filterUrl)[0]; $showFilter = collect($queryParams)->filter(function ($value, $key){ return !empty($value); })->isNotEmpty(); $accountingPeriods = getAccountingPeriods(); $deepLink = isset($_GET['deep_link']) ? true : false; @endphp Apply any or all of the filters below to streamline your search Clear Filter Show/Hide Filter @include('components.reports.filters', ['filtersNotToShow' => ['payment_channels', 'payment_providers'] ]) @include('components.reports.received-and-expected-revenue-card') @include('components.reports.download-report-button') Revenue Breakdown by Services S/N Ministry Department Service Expected Revenue Received Revenue @include('components.reports.loader') @include('components.reports.options', ['linksToHide' => ['ministry', 'department', 'service', 'monthly'] ]) @endsection @section('more-scripts') @stop