Additional Green Product Certification (as per GGP Guideline 3.0)


@if ($greenCert = $product->attachments->firstWhere('type', 'green_cert'))
@endif

Others Compliance with Government Requirement


{{ $product->ggp_energy_star ? 'Yes' : 'No' }}
{{ $product->ggp_epeat ? 'Yes' : 'No' }}
{{ $product->ggp_mcmc ? 'Yes' : 'No' }}
@if ($product->attachments->where('type', 'other_cert')->count() > 0) @php $otherCerts = $product->attachments->where('type', 'other_cert'); @endphp
@foreach ($otherCerts->sortBy('index') as $otherCert)
{{ $otherCert->ggp_label }}
@endforeach
@endif