@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.registration_no')}} @include('layouts.components.date_field', [ 'col' => 6, "name" => "from", "label" => __('lang.from'), ]) @include('layouts.components.date_field', [ 'col' => 6, "name" => "to", "label" => __('lang.to'), ]) @include('layouts.components.date_field', [ 'col' => 6, "name" => "collection_from", "label" => __('lang.collection_from'), ]) @include('layouts.components.date_field', [ 'col' => 6, "name" => "collection_to", "label" => __('lang.collection_to'), ]) {{__('lang.detail')}} {{__('lang.summary')}} {{__('lang.clear')}} @stop @push('include-css') @endpush @push('include-js') @endpush