@extends('frontend.master') @section('content')
  • Home
  • Category Product
Image
@if (count($products) > 0)
Our Products

Explore Category Products

@endif
@forelse ($products as $product)
Product Images Product Images @if ($product->offer_price)
20% Off
@endif
@if ($product->product_ratings_avg_rating != '')
@for ($i = 1; $i <= $product->product_ratings_avg_rating; $i++) @endfor
@endif
{{ $product->name }}
@if ($product->offer_price) {{ $product->offer_price }} TK {{ $product->price }} TK @else {{ $product->price }} TK @endif
@empty

No Products Found

@endforelse
@if (count($products) > 0)
{{-- --}} {{ $products->links() }}
@endif
@endsection