@extends('layouts.app') @section('title', __('Profit-Margin Report')) @section('content')

Profit Margin Report

{!! Form::open(['url' => action([\App\Http\Controllers\ChannelPartnerDiscountController::class, 'ProfitMarginexport']), 'method' => 'post', 'id' => 'add_discount_mangement_form', 'files' => true ]) !!}
@can('brand.view')
{!! Form::label('list_filter_date_range', __('report.date_range') . ':') !!} {!! Form::text('list_filter_date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
{!! Form::label('bussines_type', 'Report For:*') !!} {!! Form::select('bussines_type', $bussines_type, null, ['class' => 'form-control select2 bussines_type']); !!}
{!! Form::label('location_id', __('sale.location') . ':*') !!} {!! Form::select('location_id', $locations, null, ['class' => 'form-control select2 location_id']); !!}
{!! Form::label('location_id', 'Discount On:*') !!} {!! Form::select('discount_on', $discount_on, null, ['placeholder' => __('messages.please_select'), 'class' => 'form-control discount_on select2']); !!}
{!! Form::label('brand_id', __('product.brand') . ':') !!} {!! Form::select('brand_id', $brands, null, ['placeholder' => __('messages.please_select'), 'class' => 'form-control brand_id select2']); !!}
@endcan
@include('channel-partner-discount.email-modal')
@stop @section('javascript') @endsection