@extends('layouts.app') @section('title', __('sale.discount')) @section('content')

Channel Partner Discount List

{!! Form::open(['url' => action([\App\Http\Controllers\ChannelPartnerDiscountController::class, 'export']), 'method' => 'post', 'id' => 'add_discount_mangement_form', 'files' => true ]) !!}
@can('brand.view')
{{--
{!! Form::label('starts_at', __( 'lang_v1.starts_at' ) . ':*') !!} {!! Form::text('starts_at', null, ['class' => 'form-control bulk_discount_date', 'required', 'placeholder' => __( 'lang_v1.starts_at' ), 'required' ]); !!}
{!! Form::label('ends_at', __( 'lang_v1.ends_at' ) . ':*') !!} {!! Form::text('ends_at', null, ['class' => 'form-control bulk_discount_date', 'required', 'placeholder' => __( 'lang_v1.ends_at' ), 'required' ]); !!}
---}}
{!! 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', 'Bussines Type:*') !!} {!! Form::select('bussines_type', $bussines_type, null, ['placeholder' => __('All'), 'class' => 'form-control select2 bussines_type']); !!}
{!! Form::label('location_id', __('sale.location') . ':*') !!} {!! Form::select('location_id', $locations, null, ['placeholder' => __('All'), '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