@extends('layouts.admin.app') @section('title') Coupons @stop @section('main')
{!! Form::open(['method'=>'POST','action' => 'CouponController@store']) !!}

Add new Coupon

{!! Form::label('code', 'Coupon Code:') !!} {!! Form::text('code', null, ['class'=>'form-control', 'placeholder'=>'e.g. GG12ABC']) !!} @if ($errors->has('code')) {{ $errors->first('code') }} @endif
{!! Form::label('description', 'Description:') !!} {!! Form::text('description', null, ['class'=>'form-control', 'placeholder'=>'Coupon Description']) !!} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{!! Form::label('type', 'Type:') !!} {!! Form::select('type', ['1'=>'Percentage ( % )', '2'=>'Fixed Amount ( $ )'], null,['class'=>'form-control', 'placeholder'=>'Select Coupon Type']) !!} @if ($errors->has('type')) {{ $errors->first('type') }} @endif
{!! Form::label('discount', 'Discount Amount:') !!} {!! Form::number('discount', null, ['class'=>'form-control', 'placeholder'=>'e.g. 10','step'=>'0.01']) !!} @if ($errors->has('discount')) {{ $errors->first('discount') }} @endif
{!! Form::submit('Add Coupon', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
{{----}} @foreach($coupons as $coupon) {{----}} @endforeach
Code Discount Description
{{$coupon->code}} @if($coupon->type == 1) {{$coupon->discount}}% @else ${{$coupon->discount}} @endif {{$coupon->description}}--}} {{----}} {{--Edit--}} {{----}} {{--
@stop @section('footer') @stop