@extends('layouts.app') {{--Important Variables--}} @section('title') Bill Report @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.maintenance-left-sidebar') @stop @section('content') Maintenance Bill Report Search Criteria {{ csrf_field() }} {{ __('lang.select_project_name') }} {{ __('lang.all_project') }} @foreach( App\Models\Branch::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.property_id_unit_number') }} {{ __('lang.due_date_from') }} {{ __('lang.due_date_to') }} {{ __('lang.clear') }} @stop @push('include-css') @endpush @push('include-js') @endpush