@extends('frontend.layouts.app') @section('content')
@foreach ($products as $key => $product)
@if(home_base_price_new($product->unit_price) != home_discounted_base_price_new($product)) {{ home_base_price_new($product->unit_price) }} @endif {{ home_discounted_base_price_new($product) }}
{{ renderStarRating($product->rating) }}

{{ __($product->name) }}

@if ($addons->where('unique_identifier', 'club_point')->first() != null && $addons->where('unique_identifier', 'club_point')->first()->activated)
{{ translate('Club Point') }}: {{ $product->earn_point }}
@endif
@endforeach
@endsection @push('css') @endpush