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.monthly.pos'], 'method' => 'GET', 'id' => 'monthly_pos_report_submit']) }}
{{ Form::label('year', __('Year'),['class'=>'form-label'])}} {{ Form::select('year',$yearList,isset($_GET['year'])?$_GET['year']:'', array('class' => 'form-control select')) }}
{{ 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')}} :
{{__('Monthly Pos Report')}}
@if(!empty($filter['warehouse']))
{{__('Warehouse')}} :
{{$filter['warehouse']}}
@endif @if(!empty($filter['customer']))
{{__('Customer')}} :
{{$filter['customer']}}
@endif
{{__('Duration')}} :
{{$filter['startMonth'].' to '.$filter['endMonth']}}
{{ __('Monthly Report') }}
@endsection