@extends('layouts.main') @section('main-content') @php $filterUrl = Request::fullUrl(); $clearFilterUrl = explode("?", $filterUrl)[0]; $queryParams = (object) request()->all(); $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 Date From Date Till Accounting Period Filter by Accounting Period @foreach($accountingPeriods as $period) accounting_period) == $period->id) ? 'selected': '' }}>{{ $period->name }} @endforeach Filter 1 ? $filterUrl . '&download_report=yes' : $filterUrl .'?download_report=yes'}}" tabindex="0" aria-controls="example"> Download Report Payments Report Per Office Payments Report Per Office S/N Office Name Expected Revenue Actual Revenue @include('components.reports.loader') @endsection @section('more-scripts') @stop