dbfdg @extends('layouts.admin') @section('page-title') {{__('Manage Purchase')}} @endsection @section('breadcrumb') @endsection @push('script-page') @endpush @section('action-btn')
@endsection @section('content')
{{ Form::open(['route' => ['report.monthly.purchase'], 'method' => 'GET', 'id' => 'monthly_purchase_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('vendor', __('Vendor'),['class'=>'form-label'])}} {{ Form::select('vendor',$vendor,isset($_GET['vendor'])?$_GET['vendor']:'', array('class' => 'form-control select')) }}
{{ Form::close() }}
{{__('Report')}} :
{{__('Monthly Purchase Report')}}
@if(!empty($filter['warehouse']))
{{__('Warehouse')}} :
{{$filter['warehouse']}}
@endif @if(!empty($filter['vendor']))
{{__('Vendor')}} :
{{$filter['vendor']}}
@endif
{{__('Duration')}} :
{{$filter['startMonth'].' to '.$filter['endMonth']}}
{{ __('Monthly Report') }}
@endsection