@extends('layouts.app') {{-- Important Variables --}} @section('title') {{$report_name }} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') @php $common = new \App\Models\Common(); @endphp {{$report_name }} {{__('lang.search_criteria')}} @csrf {{__('lang.select_project_name')}} {{__('lang.all_project')}} @foreach (App\Models\Branch::leasing()->get() as $branch) {{ $branch->name }} @endforeach {{__('lang.project')}} {{__('lang.old_lease_no')}} {{__('lang.new_lease_no')}} @include('layouts.components.input_field', [ 'col' => 6, 'name' => 'product_unique_id', 'label' => __('lang.unit_no'), ]) @include('layouts.components.select_field', [ 'col' => 6, 'name' => 'customer_id', 'options' => App\Models\Customer::get(), 'default_option'=> __('lang.select_customer'), 'label' => __('lang.customer'), ]) {{__('lang.clear')}} @stop @push('include-css') @endpush @push('include-js') @endpush