@extends('layouts.main') @section('title', 'Voucher') @section('content') @push('head') @endpush
@include('include.message')
@can('create-voucher') @endcan
@csrf
{!! Form::select('delete_status', $deleteStatusList, null,[ 'class'=>'form-control', 'placeholder' => 'Select Delete Status']) !!}
{!! Form::select('element_status', $elementStatusList, null,[ 'class'=>'form-control', 'placeholder' => 'Select Element Status']) !!}
{{ __('Discount Type')}} {{ __('Voucher Type')}} {{ __('Voucher Code')}} {{ __('Discount Value')}} {{ __('Store')}} {{ __('Max Count')}} {{ __('Valid Until')}} {{ __('Change Status')}} {{ __('Action')}}
@canany(['bulk-delete-voucher', 'bulk-restore-voucher'])
@endcan
@push('script') @endpush @endsection