{!! Form::label('type', 'Select Promotion' . ':*') !!}
{!! Form::label('name', 'Offer Name' . ':*') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => 'Offer Name' ]); !!}
@if (is_null($default_location))
{!! Form::label('location_id', 'Select Location' . ':*') !!}
@endif
{!! Form::label('customer_group_id', 'Select Customer Group' . ':') !!}
{!! Form::label('preference_weighatage', 'Preference Weightage' . ':*') !!}
{!! Form::text('preference_weighatage', null, ['class' => 'form-control', 'required', 'placeholder' => 'Preference Weightage' ]); !!}
Buy Product
Product |
Quantity |
|
{!! Form::number('buy_product_quantity', null, ['class' => 'form-control', 'placeholder' => 'Buy Product Quantity']); !!}
|
Get Product
Product |
Quantity |
|
{!! Form::number('get_product_quantity', null, ['class' => 'form-control', 'placeholder' => 'Get Product Quantity']); !!}
|
{!! Form::label('category_id', 'Select Category' . ':*') !!}
{!! Form::label('discount_amount', __('sale.discount_amount') . ':*' ) !!}
{!! Form::text('discount_amount', null, ['class' => 'form-control', 'placeholder' => 'Discount Amount']); !!}
{!! Form::label('start_date', 'Start Date' . ':*') !!}
{!! Form::Date('start_date', null, ['class' => 'form-control', 'required', 'placeholder' => 'Start Date' ]); !!}
{!! Form::label('end_date', 'End Date' . ':*') !!}
{!! Form::Date('end_date', null, ['class' => 'form-control', 'required', 'placeholder' => 'End Date' ]); !!}
{!! Form::label('description', 'Description' . ':*') !!}
{!! Form::text('description', null, ['class' => 'form-control', 'required', 'placeholder' => 'Description' ]); !!}