|
Hi {{ $name }} , Enquiry Submitted Successfull
|
@if (count($items) > 0)
|
Products
|
@foreach ($items as $item)
@if ($item->parent_id == 0)
|
{{ get_enquiry_attribute($item->attribute_value) }}
|
{{--
Qty
{{ $item->qty }}
| --}}
@endif
@if ($item->parent_id != 0)
|
{{ get_enquiry_attribute($item->attribute_value) }}
|
{{--
Qty
{{ $item->qty }}
| --}}
@endif
@endforeach
|
|
@endif
@if (count($packageitems) > 0)
|
Packages
|
@php
$oldname = '';
@endphp
@foreach ($packageitems as $item)
@php
$newname =
$item->package_name;
@endphp
@if ($newname != $oldname)
|
Package
Name
|
{{ $item->package_name }}
|
|
@endif
|
|
{{--
Qty
{{ $item->qty }}
| --}}
@php
$oldname =
$item->package_name;
@endphp
@endforeach
|
|
@endif
|
|