@extends('layouts.adminapp')
@section('css')
@stop
@section('content')
Set Vouchers
Voucher
@if(session('success'))
{{ session('success') }}
@endif
List of Vouchers
Voucher Name |
Amount |
Update |
Remove |
@if(count($vouchers)>0)
@foreach($vouchers as $voucher)
{{$voucher->type}} |
{{number_format($voucher->amount,2)}} |
Update |
Remove |
@endforeach
@endif
@stop
@section('script')
@stop