@extends('general_base')
@section('title', 'Compare Products')
@section('style')
@endsection
@section('content')
No Products to Compare
Add products to compare by clicking the compare icon on product cards.
Browse Products
Name
Category
Brand
Price
Ratings
Availability
@foreach($compareAttributes as $key => $label)
@if($key != 'brand') {{-- Brand is already included above --}}
{{ $label }}
@endif
@endforeach
@foreach($compareAttributes as $key => $label)
@if($key != 'brand') {{-- Brand is already included above --}}
@endif
@endforeach
@endsection
@section('script')
@endsection