@php
$previousName = null;
@endphp
@foreach($collectionProducts as $key => $value)
{{-- {{ dd($value['details']['collection']['id']) }}--}}
{{ $key }}
@foreach($value['products'] as $product)
@endforeach
{!! $value['details']['collection']['descriptions'] ?? 'Special Discount Offer On Collection Purchase' !!}
Collection Price
${{ $value['details']['discounted_amount'] ?? '0.00' }}
upto {{ $value['details']['discount'] ?? '00' }}%
${{ $value['details']['actual_amount'] ?? '0.00' }}
{{--Collection Form Start--}}
@if(!empty($value['details']['discounted_amount']) && !empty($value['details']['actual_amount']))
@endif
{{--Collection Form End--}}
@endforeach
{{----}}
{{----}}