@component('components.filters', ['title' => 'Retail Price List'])
{!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'getProductDiscountDownload']), 'method' => 'post', 'files' => true ]) !!}
{{--
--}}
@can('product.view')
{!! Form::label('category_id', __('product.category') . ':') !!}
{!! Form::select('category_id[]', $categories, [], ['multiple' => 'multiple', 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'product_list_filter_category_id']); !!}
{!! Form::label('brand_id', __('product.brand') . ':') !!}
{!! Form::select('brand_id[]', $brands, 0, ['multiple' => 'multiple','class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'product_list_filter_brand_id', 'placeholder' => 'select brands']); !!}
Product
Brand
Category
Sub Category
Basic Cost
MRP
Retail Discount
Retail Profit%
{!! Form::close() !!}
@endcomponent
{{-- --}}