@foreach($materials as $material)
@php
$imgPath = match($material) {
'Powder Coated' => 'images/Materials/powder_coated.png',
'Stainless Steel' => 'images/Materials/stanless_steel.png',
'Solid Plastic' => 'images/Materials/solid_plastic_new.jpg',
'Phenolic Black Core' => 'images/Materials/phenolic.png',
'Phenolic Color Through' => 'images/Materials/phenolic-color-through.jpg',
'Plastic Laminate' => 'images/Materials/Plastic-laminate.png',
default => 'images/Materials/powder_coated.png'
};
@endphp
@endforeach