@extends('layouts.admin') @section('title', 'Product | Mintavia Admin') @section('content')
@if (isset($message) && $message) @endif

Coupen Report

@csrf
{{-- From and To Date --}}
@forelse($coupons as $index => $coupon) @empty @endforelse
Date Voucher No Party Name Coupon Brand Coupon Qty Coupon Amount Total Amount Action
{{ $coupon['date'] }} {{ $coupon['voucher_no'] }} {{ $coupon['account']->name ?? '-' }} {{ $coupon['brand_names'] ?? '-' }} {{ $coupon['coupon_qty'] }} {{ $coupon['coupon_amt'] }} {{ $coupon['total_amt'] }} @if (!empty($coupon['bill_id'])) @else @endif
@csrf @method('DELETE')
No records found
@endsection @section('js') @endsection