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.daily.purchase'], 'method' => 'GET', 'id' => 'daily_purchase_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('vendor', __('Vendor'),['class'=>'form-label'])}} {{ Form::select('vendor',$vendor,isset($_GET['vendor'])?$_GET['vendor']:'', array('class' => 'form-control select')) }}
{{ Form::close() }}
{{__('Report')}} :
{{__('Daily Purchase Report')}}
@if(!empty($filter['warehouse']))
{{__('Warehouse')}} :
{{$filter['warehouse']}}
@endif @if(!empty($filter['vendor']))
{{__('Vendor')}} :
{{$filter['vendor']}}
@endif
{{__('Duration')}} :
{{$filter['startDate'].' to '.$filter['endDate']}}
{{ __('Daily Report') }}
@endsection