@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(); @endphp Apply any or all of the filters below to streamline your search Clear Filter Show/Hide Filter @include('components.reports.filters', ['filtersToShow' => ['ministries'] ]) @include('components.reports.received-and-expected-revenue-card') @include('components.reports.download-report-button') Revenue Breakdown by Ministries S/N Ministry Expected Revenue Received Revenue @include('components.reports.loader') @include('components.reports.options', ['linksToHide' => ['ministry'] ]) @endsection @section('more-scripts') @stop