@extends('layouts.app') {{-- Important Variables --}} @section('title') Month Wise Bill 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 Month Wise Bill 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_bill') }} {{ __('lang.all_bills_caps') }} {{ __('lang.maintenance_bills_caps') }} {{ __('lang.electricity_bills_caps') }} {{ __('lang.water_bills_caps') }} {{ __('lang.bill_type') }} --}} {{ __('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.clear') }} @stop @push('include-css') @endpush @push('include-js') @endpush