63 lines
2.3 KiB
PHP
63 lines
2.3 KiB
PHP
@extends('backend.layouts.app')
|
|
|
|
@section('content')
|
|
|
|
<div class="col-lg-8 mx-auto">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h5 class="mb-0 h6">{{translate('Coupon Information Adding')}}</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<form class="form-horizontal" action="{{ route('coupon.store') }}" method="POST" enctype="multipart/form-data">
|
|
@csrf
|
|
@if ($errors->any())
|
|
<div class="alert alert-danger">
|
|
<ul class="mt-3">
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
<div class="form-group row">
|
|
<label class="col-lg-3 col-from-label" for="name">{{translate('Coupon Type')}}</label>
|
|
<div class="col-lg-9">
|
|
<select name="type" id="coupon_type" class="form-control aiz-selectpicker" onchange="coupon_form()" required>
|
|
<option value="">{{translate('Select One') }}</option>
|
|
<option value="product_base" @if (old('type') == 'product_base') selected @endif>{{translate('For Products')}}</option>
|
|
<option value="cart_base" @if (old('type') == 'cart_base') selected @endif>{{translate('For Total Orders')}}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="coupon_form">
|
|
|
|
</div>
|
|
<div class="form-group mb-0 text-right">
|
|
<button type="submit" class="btn btn-primary">{{translate('Save')}}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
@section('script')
|
|
|
|
<script type="text/javascript">
|
|
|
|
function coupon_form(){
|
|
var coupon_type = $('#coupon_type').val();
|
|
$.post('{{ route('coupon.get_coupon_form') }}',{_token:'{{ csrf_token() }}', coupon_type:coupon_type}, function(data){
|
|
$('#coupon_form').html(data);
|
|
});
|
|
}
|
|
|
|
@if($errors->any())
|
|
coupon_form();
|
|
@endif
|
|
|
|
</script>
|
|
|
|
@endsection
|