@extends('layouts.app') @section('title', __('Bulk Sell Return')) @section('content')

List Pos Return

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all'), ]) !!}
{!! Form::label('filter_customer_id', __('contact.customer') . ':') !!} {!! Form::select('filter_customer_id', $customers, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all'), ]) !!}
{!! Form::label('filter_date_range', __('report.date_range') . ':') !!} {!! Form::text('filter_date_range', null, [ 'placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly', ]) !!}
@endcomponent @component('components.widget', [ 'class' => 'box-primary', 'title' => __('All bulk sell return'), ])
@lang('messages.action') @lang('messages.date') @lang('purchase.ref_no') @lang('Customer') @lang('business.location') @lang('Payment Status') @lang('Total Return') @lang('Total Refund') @lang('Payment Due') @lang('lang_v1.added_by')
@endcomponent
@stop @section('javascript') @endsection