@extends('layouts.app') @section('title', 'Products Final Report') @section('content')

@lang('sale.products') @lang('lang_v1.manage_products')

@component('components.filters', ['title' => __('report.filters')]) {!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'getProductDiscountDownload']), 'method' => 'post', 'files' => true ]) !!}
{!! 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
Depo Discount
Depo Profit%
Canteen Discount
Canteen Profit%
Retail Discount
Retail Profit%
{!! Form::close() !!} @endcomponent
@can('product.view')
@endcan
@endsection @section('javascript') {{-- --}} @endsection