@extends('layouts.app') {{-- Important Variables --}} @section('title') {{ __('lang.defaulter_report_property_wise') }} @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_property_wise') }}

{{ __('lang.search_criteria') }}


@csrf @include('layouts.components.select_field', [ 'col' => 6, 'name' => 'branch_id', 'options' => $branches, 'default_option'=> __('lang.select_project_name'), 'label' => __('lang.project'), ]) @include('layouts.components.select_field', [ 'col' => 6, 'name' => 'owner_id', 'options' => $owners, 'default_option'=> __('lang.select_owner'), 'label' => __('lang.owner'), ]) @include('layouts.components.input_field', [ 'col' => 6, 'name' => 'product_id', 'label' => __('lang.property_id_unit_number'), ]) @include('layouts.components.input_field', [ 'col' => 6, 'name' => 'bill_no', 'label' => __('lang.bill_no'), ])
@include('layouts.components.date_field', [ 'col' => 6, "name" => "from", "label" => __('lang.from'), "id" => "bs_datepicker_container", ]) @include('layouts.components.date_field', [ 'col' => 6, "name" => "to", "label" => __('lang.to'), "id" => "bs_datepicker_container", ])
@stop @push('include-css') @endpush @push('include-js') @endpush