@extends('layouts.frontend') @section('title', 'Collections - Premium Fashion | Rathore Collection') @section('content')

Our Collections

Discover Rathore Collection's carefully curated selection of premium stitched and unstitched garments for men, women, and children. Each collection features traditional elegance and modern sophistication.

@if($collections->count() > 0)
@foreach($collections as $collection)
{{ $collection->title }}
@if($collection->description)

{{ strlen($collection->description) > 100 ? substr($collection->description, 0, 100) . '...' : $collection->description }}

@endif

{{ $collection->products->count() }} product(s)

View Collection
@endforeach
{{ $collections->links() }}
@else

No collections available at the moment at Rathore Collection.

Explore our complete range of premium stitched and unstitched garments for men, women, and children.

Browse All Products
@endif
@push('styles') @endpush @endsection