@if (count($discounts) > 0)
{{ $discounts->where('status', 1)->count() }} Active {{ Helper::getStringPlural($discounts->where('status', 1)->count(), 'Code')}}
@forelse($discounts->where('status', 1) as $discount) @include('discounts.discount_list') @empty

No Data Found

@endforelse
{{ $discounts->where('status', 2)->count() }} Inactive {{ Helper::getStringPlural($discounts->where('status', 2)->count(), 'Code')}}
@forelse($discounts->where('status', 2) as $discount) @include('discounts.discount_list') @empty

No Data Found

@endforelse
@endif