@extends('layouts.admin') @section('title', 'Voucher List') @section('content-header', 'Voucher List') @section('content-actions') @section('content')
@php $i = 0; $k = 0; $today = date("Y-m-d"); @endphp @foreach($vou as $key) @if ($key->used_flag == 0) @elseif ($key->exp_date < $today) @else @endif @php $i++; if($key->used_flag == '1'){ $k++; } @endphp @endforeach
Voucher No. Security No. Amt (RM) Expiry Date Used Used Date Used Outlet Counter No. Transaction No. Action
{{$key->voucher_code}} {{$key->security_code}} {{$key->voucher_amt}} {{$key->exp_date}} {{$key->used_flag}} {{$key->tran_date}} {{$key->oid}} {{$key->reg}} {{$key->tran_no}} Print Voucher Voucher Expired
Total Voucher {{$i}}
Total Used Voucher {{$k}}
@endsection @section('js') @endsection