dbfdg @extends('layouts.admin') @section('page-title') {{__('Manage Pos')}} @endsection @section('breadcrumb') @endsection @push('script-page') @endpush @section('action-btn')
@endsection @section('content')
{{ Form::open(['route' => ['report.daily.pos'], 'method' => 'GET', 'id' => 'daily_pos_report_submit']) }}
{{ Form::label('start_date', __('Start Date'),['class'=>'form-label'])}} {{ Form::date('start_date', isset($_GET['start_date'])?$_GET['start_date']:'', array('class' => 'form-control month-btn')) }}
{{ Form::label('end_date', __('End Date'),['class'=>'form-label'])}} {{ Form::date('end_date', isset($_GET['end_date'])?$_GET['end_date']:'', array('class' => 'form-control month-btn')) }}
{{ Form::label('warehouse', __('Warehouse'),['class'=>'form-label'])}} {{ Form::select('warehouse',$warehouse,isset($_GET['warehouse'])?$_GET['warehouse']:'', array('class' => 'form-control select')) }}
{{ Form::label('customer', __('Customer'),['class'=>'form-label'])}} {{ Form::select('customer',$customer,isset($_GET['customer'])?$_GET['customer']:'', array('class' => 'form-control select')) }}
{{ Form::close() }}
{{__('Report')}} :
{{__('Daily Pos Report')}}
@if(!empty($filter['warehouse']))
{{__('Warehouse')}} :
{{$filter['warehouse']}}
@endif @if(!empty($filter['customer']))
{{__('Customer')}} :
{{$filter['customer']}}
@endif
{{__('Duration')}} :
{{$filter['startDate'].' to '.$filter['endDate']}}
{{ __('Daily Report') }}
@endsection