@extends('layouts.main') @section('main-content') @php $queryParams = isset($queryParams) ? collect($queryParams) : collect(request()->all()); $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', ['filtersToShow' => ['ministries', 'departments'] ]) @include('components.reports.received-and-expected-revenue-card') @include('components.reports.download-report-button') Revenue Breakdown by Departments S/N Ministry Department Expected Revenue Received Revenue @include('components.reports.loader') @include('components.reports.options', ['linksToHide' => ['ministry', 'department'] ]) @endsection @section('more-scripts') @stop