@extends('layouts.admin') @section('css') @endsection @section('content')
  • {!! Form::open(array('route' => 'gift-card-orders.index', 'method' => 'GET','class'=>'filter_form mobile_filter col-md-12')) !!}
    {!! Form::label("date", __('report.date') ,['class' => 'first-column']) !!}
    {!! Form::hidden('from', isset($_GET['from'])?$_GET['from'] : '', ['id' => 'from']) !!} {!! Form::hidden('to', isset($_GET['to'])?$_GET['to'] : '', ['id' => 'to']) !!}
    {!! Form::label("payment_status",__('gift_card.payment_status'), ['class' => 'first-column']) !!} {!! Form::select('payment_status[]',['1'=>'Complete','0'=>'Pending'], (isset($_GET['payment_status'])?$_GET['payment_status']:''), ['class'=>'form-control select2 second-column','multiple'=>true]) !!}
    {!! Form::label("redeem_status",__('gift_card.redeem_status'), ['class' => 'first-column']) !!} {!! Form::select('redeem_status[]',['1'=>'Yes','0'=>'No'], (isset($_GET['redeem_status'])?$_GET['redeem_status']:''), ['class'=>'form-control select2 second-column','multiple'=>true]) !!}
    {!! Form::close() !!}
  • {{ __('gift_card.create')}}
{{ __('common.sr-no') }} {{ __('orders.id') }} {{ __('orders.order_from') }} {{ __('gift_card.amount') }} {{ __('orders.payment_status') }} {{ __('gift_card.balance') }} {{ __('gift_card.redeemed_on') }} {{ __('gift_card.purchased_on') }} {{ __('gift_card.view_order') }}
@endsection @section('script') @endsection