@extends('layouts.app') {{--Important Variables--}} @php $params = session('params'); @endphp @section('title') {{__('lang.payment_collection_report')}} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.recovery-left-sidebar') @stop @section('content') {{__('lang.payment_collection_report')}} Search Criteria {{ csrf_field() }} {{__('lang.select_project_name')}} {{__('lang.all_projects')}} @if (App\Models\Branch::userProjects()->get()->count() >0 ) @foreach( App\Models\Branch::userProjects()->get() as $Branch ) id ? 'selected' : ''}}>{{ $Branch->name }} @endforeach @endif {{__('lang.project')}} {{__('lang.select_customer_name')}} @foreach( App\Models\Customer::all() as $customer ) id ? 'selected' : ''}}>{{ $customer->name }} @endforeach {{__('lang.customer_name')}} {{__('lang.select_product_type')}} @foreach( App\Models\ProductType::all() as $productType) id ? 'selected' : ''}}> {{ $productType->name }} @endforeach {{__('lang.product_type')}} Select Block @foreach( App\Models\Block::all() as $block) id, $params['block_id'] ?? []) ? 'selected' : '' }}> {{ $block->name }} @endforeach {{__('lang.block')}} @include("admin.reports.partials.agents",[ 'col' => '6' ]) {{__('lang.clear')}} @stop @push('include-css') @endpush @push('include-js') @endpush