@extends('layouts.master') @section('content')

{{ trans('marketing.Edit MKGT Bonus') }}

@csrf {{ Form::hidden('id', $hidden) }}
{{ Form::label('bonusType', trans('marketing.Bonus Type'), ['class' => 'required']) }} {{ Form::select('bonusType', $bonusTypeList, $bonusType, ['id' => 'bonusType', 'class' => 'form-control select2']) }}
{{ Form::label('bonusCode', trans('marketing.Bonus Code'), ['class' => 'required']) }} {{ Form::text('bonusCode', $bonusCode, ['id' => 'bonusCode', 'class' => 'form-control','maxlength' => 10]) }}
{{ Form::label('bonusDependency', trans('marketing.Bonus Dependency'), ['class' => 'required']) }} {{ Form::text('bonusDependency', $bonusDependency, ['id' => 'bonusDependency', 'class' => 'form-control','readonly' => 'true']) }}
{{ Form::label('bonusDescription', trans('marketing.Bonus Description'), ['class' => 'required']) }} {{ Form::text('bonusDescription', $bonusDescription, ['id' => 'bonusDescription', 'class' => 'form-control']) }}
{{ Form::label('startDate', trans('marketing.Start Date'), ['class' => 'required']) }} {{ Form::text('startDate', '', ['class' => 'form-control', 'id' => 'startDate', 'readonly' => 'readonly']) }}
{{ Form::label('endDate', trans('marketing.End Date'), ['class' => 'required']) }} {{ Form::text('endDate', '', ['class' => 'form-control', 'id' => 'endDate', 'readonly' => 'readonly']) }}
{{ Form::label('applicability', trans('marketing.Applicability'), ['class' => 'required']) }}
   

@php $i=0; @endphp @foreach($rowsData as $rowData) @php ++$i; @endphp @endforeach
{{ trans('marketing.Min P.Amt') }} {{ trans('marketing.Max P.Amt') }} {{ trans('marketing.Bonus%') }} {{ trans('marketing.Max B.Amt') }} {{ trans('marketing.Wager : Relese Ratio') }}
{{ trans('marketing.Make it default') }}:    
{{ Form::select('default', $defaultList, $makeDefault, ['id' => 'default', 'class' => 'form-control select2']) }}
{{ trans('marketing.Bonus split ratio') }}:    
% {{ trans('marketing.Wagering Share') }}
% {{ trans('marketing.Instant cash') }}

Sample File


@if($usersCount != 0)Imported Total Records: {{$usersCount}} @endif

{{ trans('marketing.Cancel Bonus') }}
@endsection @section('javascript') @include('datatablejs') @stop