@extends('layouts.adminapp') @section('css') @stop @section('content')

Set Vouchers


Voucher

@if(session('success'))
{{ session('success') }}
@endif
{{csrf_field()}}

**Record with same voucher name will be updated.

 

List of Vouchers

@if(count($vouchers)>0) @foreach($vouchers as $voucher) @endforeach @endif
Voucher Name Amount Update Remove
{{$voucher->type}} {{number_format($voucher->amount,2)}} Update Remove
@stop @section('script') @stop