@extends('layouts.frontend') @section('title', $collection->title) @section('content')
@if($collection->image) {{ $collection->title }} @endif

{{ $collection->title }}

@if($collection->description)

{{ $collection->description }}

@endif

{{ $products->total() }} product(s) in this collection

@if($products->count() > 0)
@foreach($products as $product)
@include('frontend.components.product-card', ['product' => $product])
@endforeach
{{ $products->links() }}
@else

No products found in this collection at Rathore Collection

Discover our premium stitched and unstitched garments for men, women, and children in other collections.

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