@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 @include('layouts.components.select_field', [ 'col' => 6, 'name' => 'branch_id', 'options' => App\Models\Branch::userProjects()->get(), 'default_option'=> __('lang.select_project'), 'label' => __('lang.project'), ]) @include('layouts.components.input_field', [ 'col' => 6, 'name' => 'registration_no', 'label' => __('lang.registration_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