@php $common = new \App\Models\Common; @endphp @extends('layouts.app') {{--Important Variables--}} @section('title') {{__('lang.consignment_report')}} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') {{__('lang.CONSIGNMENT_REPORT')}} {{ csrf_field() }} {{__('lang.select_project_name')}} {{__('lang.all_projects')}} @if (App\Models\Branch::userProjects()->get()->count() >0 ) @foreach( App\Models\Branch::userProjects()->get() as $Branch ) {{ $Branch->name }} @endforeach @endif {{__('lang.project_name')}} {{__('lang.select_customer_name')}} @foreach( App\Models\Customer::all() as $customer ) {{ $customer->name }} @endforeach {{__('lang.customer_name')}} {{ __('lang.select_status') }} @foreach ($common::consignment_status() as $status) {{ $status }} @endforeach {{__('lang.status')}} {{__('lang.registration_no')}} {{__('lang.consignment_no')}} {{__('lang.tracking_id')}} @include("admin.components.input.date",[ "name" => "from", "label"=> __('lang.from'), "id"=> "bs_datepicker_range_container", "value"=> "", "class"=> "", "col"=> "col-lg-3 col-md-3 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-3 col-md-3 col-sm-12 col-xs-12", ]) {{__('lang.clear')}} @stop @push('include-css') @endpush @push('include-js') @endpush