@extends('layouts.app') {{-- Important Variables --}} @section('title') {{ __('lang.defaulter_report') }} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.maintenance-left-sidebar') @stop @section('content') @php $common = new \App\Models\Common(); @endphp {{ __('lang.defaulter_report') }} {{ __('lang.search_criteria') }} @csrf {{ __('lang.select_project_name') }} {{ __('lang.all_project') }} @foreach (App\Models\Branch::userProjects()->facility()->get() as $branch) {{ $branch->name }} @endforeach {{ __('lang.project') }} {{ __('lang.select_owner') }} {{ __('lang.all_owners_caps') }} @foreach (App\Models\Customer::facility()->get() as $owner) {{ $owner->name }} ({{ $owner->nid }}) @endforeach {{ __('lang.owner') }} {{ __('lang.property_id_unit_number') }} {{ __('lang.bill_no') }} {{ __('lang.select_bill_month') }} @foreach ($common::Months() as $month_key=> $month) {{ $month }} @endforeach {{ __('lang.bill_month') }} {{ __('lang.select_bill_year') }} @foreach (\App\Models\Common::facilityYears() as $year) {{ $year }} @endforeach {{ __('lang.bill_year') }} {{ __('lang.select_bill') }} {{ __('lang.all_bills_caps') }} {{ __('lang.maintenance_bills_caps') }} {{ __('lang.electricity_bills_caps') }} {{ __('lang.water_bills_caps') }} {{ __('lang.bill_type') }} {{ __('lang.select_payment_status') }} {{ __('lang.all_payment_status') }} {{ __('lang.setteled_caps') }} {{ __('lang.partially_paid_caps') }} {{ __('lang.pending_caps') }} {{ __('lang.defaulter_caps') }} {{ __('lang.payment_status') }} {{-- Select Status ALL STATUS ACTIVE OVER DUE Status --}} {{ __('lang.from') }} {{ __('lang.to') }} @include('layouts.components.select_field', [ 'col' => 6, 'name' => 'property_type', 'options' => $propertyType, 'default_option'=> __('lang.property_type'), 'label' => __('lang.select_property_type'), ]) {{__('lang.detailed')}} {{__('lang.summary')}} {{ __('lang.select_product') }} @foreach (App\Models\MntBillTerm::all() as $term) {{ $term->name }} @endforeach {{ __('lang.bill_term') }} {{ __('lang.clear') }} @stop @push('include-css') @endpush @push('include-js') @endpush