@extends('layouts.app') {{-- Important Variables --}} @section('title') {{ __('lang.bulk_print') }} @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(); $current_year = Carbon\Carbon::now()->format('Y'); $current_month = Carbon\Carbon::now()->format('m'); @endphp {{ __('lang.bill_printing') }} {{__('lang.search_criteria')}} @csrf {{ __('lang.select_bill_type') }} {{ __('lang.maintenance_bill_caps') }} {{ __('lang.electricity_bill_caps') }} {{ __('lang.water_bill_caps') }} {{ __('lang.bill_type') }} {{ __('lang.select_project_name') }} {{-- ALL PROJECTS --}} @foreach (App\Models\Branch::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_product') }} {{ __('lang.all_products_caps') }} @foreach (App\Models\Product::facility()->get() as $product) {{ $product->product_unique_id }} @endforeach {{ __('lang.product') }} {{ __('lang.select_month') }} @foreach ($common->Months() as $key => $value) {{ $value }} @endforeach {{ __('lang.bill_month') }} {{ __('lang.select_year') }} @foreach ($common::facilityYears() as $key => $value) {{ $value }} @endforeach {{ __('lang.bill_year') }} {{ __('lang.select_product_type') }} @foreach (App\Models\ProductType::all() as $key => $type) {{ $type->name }} @endforeach {{ __('lang.product_type') }} {{ __('lang.select_product') }} @foreach (App\Models\MntBillTerm::all() as $term) {{ $term->name }} @endforeach {{ __('lang.bill_term') }} {{ __('lang.select_bill_type') }} {{ __('lang.residential_caps') }} {{ __('lang.commercial_caps') }} {{ __('lang.bill_type') }} {{__('lang.clear')}} @stop @push('include-css') @endpush @push('include-js') @endpush