@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']); !!} {{-- Add Lead --}} {{-- *Clik to Print --}} 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') @lang('lang_v1.all_products') @include('report.partials.product_price_list_header') @endcan @endsection @section('javascript') {{-- --}} @endsection