@extends('outlets.layout') @section('content') @include('outlets.header', ['title'=>'Manage Vouchers'])
@if (count($errors) > 0) @if($errors->any()) @endif @endif
@if(count($voucher) > 0) @foreach ($voucher as $key=>$listingS) @endforeach @else @endif
ID Package Name Voucher Id Voucher Type Price Add Date Modify Date Action
{{ $i++ }} {{ $package_name }} {{ $listingS->voucher_number }} {{ ($listingS->type == 1) ? 'Paid' : 'Free' }} ${{ $listingS->price }} {{ $listingS->add_date }} {{ ($listingS->modify_date != '') ? $listingS->modify_date : 'NA' }}
{{ trans('labels.NoRecordFound') }}
@endsection