@extends('layouts.app') {{--Important Variables--}} @php $common = new \App\Models\Common(); $blocks = \App\Models\Block::get(); @endphp @section('title') Bill Report @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.maintenance-left-sidebar') @stop @section('content') {{ __('lang.maintenance_bill_report') }} {{ __('lang.search_criteria') }} {{ csrf_field() }} {{ __('lang.select_project_name') }} {{ __('lang.all_projects') }} @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.select_bill_type') }} {{ __('lang.all_bill_types_caps') }} {{ __('lang.residential') }} {{ __('lang.commercial') }} {{ __('lang.bill_type') }} {{ __('lang.select_bill_term') }} {{ __('lang.all_bill_terms_caps') }} @foreach( App\Models\MntBillTerm::get() as $term ) {{ $term->name }} @endforeach {{ __('lang.bill_term') }} {{ __('lang.select_month') }} @foreach (\App\Models\Common::months() as $key => $month) {{ $month }} @endforeach {{ __('lang.bill_month') }} {{ __('lang.select_year') }} @foreach (\App\Models\Common::facilityYears() as $year) {{ $year }} @endforeach {{ __('lang.bill_year') }} {{ __('lang.property_id_unit_number') }} {{ __('lang.select_date_type') }} {{ __('lang.due_date') }} {{ __('lang.issue_date') }} {{ __('lang.date_type') }} @include('layouts.components.select_field', [ 'col' => 6, 'name' => 'block_id', 'options' => $blocks, 'default_option'=> __('lang.select_block'), 'label' => __('lang.block'), ]) {{ __('lang.from') }} {{ __('lang.to') }} {{ __('lang.clear') }} @stop @push('include-css') @endpush @push('include-js') @endpush