@extends('layouts.admin-layout')
@section('title', 'All Voucher ')
@section('content')
Voucher Section
| S.N. |
Code |
Discount Amount Percentage |
Action |
@foreach($get_vouchers as $voucher)
| {{ $loop->iteration }} |
{{$voucher->voucher_code}} |
{{$voucher->discount_amount_percent}} |
|
@endforeach
@endsection
@section('script')
@endsection