@extends('layouts.master') @section('title', 'Products | Setara Group') @push('styles') @endpush @section('content')

PRODUCT PORTFOLIO

Discover Moon Readywears Limited. Where style and quality converge. With years of expertise in garment manufacturing, our trendsetting portfolio caters to your every fashion need.

Trusted by Global Brands

@foreach($clients as $client) @if($client->logo) @else {{ $client->name }} @endif @endforeach
@foreach($categories as $index => $category)

{{ $category->name }}

{{ $category->description }}

@php $count = 0; @endphp @foreach($category->subcategories as $sub) @foreach($sub->products as $product) @if($count < 2) @php $productImages = collect([$product->main_image])->concat($product->images->pluck('image_path'))->filter()->join(','); @endphp @php $count++; @endphp @endif @endforeach @endforeach @if($category->products->count() > 2) @php $allCategoryImages = $category->products->map(function($p) { return collect([$p->main_image])->concat($p->images->pluck('image_path')); })->flatten()->filter()->unique()->join(','); @endphp @endif
@php $categoryImages = $category->products->map(function($p) { return collect([$p->main_image])->concat($p->images->pluck('image_path')); })->flatten()->filter()->unique()->join(','); @endphp {{ $category->name }}
@endforeach
@endsection @push('scripts') @endpush