@extends('layouts.app') {{-- Important Variables --}} @section('title') {{__('lang.file_receiving_report')}} @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 {{__('lang.file_receiving_report')}} {{__('lang.search_criteria')}} @csrf {{__('lang.select_project_name')}} {{__('lang.all_projects')}} @foreach (App\Models\Branch::all() as $branch) {{ $branch->name }} @endforeach {{__('lang.project')}} {{__('lang.select_owner')}} {{__('lang.all_customer')}} @foreach (App\Models\Customer::all() as $customer) {{ $customer->name }} @endforeach {{__('lang.customer')}} {{__('lang.registration_no')}} {{__('lang.term_name')}} {{__('lang.file_name')}} @include("admin.components.input.date",[ "name" => "from", "label"=> __('lang.from'), "id"=> "bs_datepicker_range_container", "value"=> "", "class"=> "", "col"=> "col-lg-6 col-md-6 col-sm-12 col-xs-12", ]) @include("admin.components.input.date",[ "name" => "to", "label"=> __('lang.to'), "id"=> "bs_datepicker_range_container1", "value"=> "", "class"=> "", "col"=> "col-lg-6 col-md-6 col-sm-12 col-xs-12", ]) {{__('lang.clear')}} @stop @push('include-css') @endpush @push('include-js') @endpush