{{ $detailedProduct->getTranslation('name') }}
@php
$total = 0;
$total += $detailedProduct->reviews->count();
@endphp
{{ renderStarRating($detailedProduct->rating) }}
({{ $total }} {{ translate('reviews')}})
@if ($detailedProduct->est_shipping_days)
{{ translate('Estimate Shipping Time')}}: {{ $detailedProduct->est_shipping_days }} {{ translate('Days') }}
@endif
{{ translate('Sold by')}}:
@if ($detailedProduct->added_by == 'seller' && get_setting('vendor_system_activation') == 1)
{{ $detailedProduct->user->shop->name }}
@else
{{ translate('Inhouse product') }}
@endif
@if (get_setting('conversation_system') == 1)
{{ translate('Message Seller')}}
@endif
@if ($detailedProduct->brand != null)
@endif
@if(home_price($detailedProduct) != home_discounted_price($detailedProduct))
{{ home_price($detailedProduct) }}
@if($detailedProduct->unit != null)
/{{ $detailedProduct->getTranslation('unit') }}
@endif
{{ translate('Discount Price')}}:
{{ home_discounted_price($detailedProduct) }}
@if($detailedProduct->unit != null)
/{{ $detailedProduct->getTranslation('unit') }}
@endif
@else
{{ home_discounted_price($detailedProduct) }}
@if($detailedProduct->unit != null)
/{{ $detailedProduct->getTranslation('unit') }}
@endif
@endif
@if (\App\Addon::where('unique_identifier', 'club_point')->first() != null && \App\Addon::where('unique_identifier', 'club_point')->first()->activated && $detailedProduct->earn_point > 0)
{{ translate('Club Point') }}:
{{ $detailedProduct->earn_point }}
@endif
{{ translate('Add to cart')}}
{{ translate('অর্ডার করতে এখানে ক্লিক করুন')}}
{{ translate('Out of Stock')}}
{{ translate('Add to wishlist')}}
{{ translate('Add to compare')}}
@if(Auth::check() && \App\Addon::where('unique_identifier', 'affiliate_system')->first() != null && \App\Addon::where('unique_identifier', 'affiliate_system')->first()->activated && (\App\AffiliateOption::where('type', 'product_sharing')->first()->status || \App\AffiliateOption::where('type', 'category_wise_affiliate')->first()->status) && Auth::user()->affiliate_user != null && Auth::user()->affiliate_user->status)
@php
if(Auth::check()){
if(Auth::user()->referral_code == null){
Auth::user()->referral_code = substr(Auth::user()->id.Str::random(10), 0, 10);
Auth::user()->save();
}
$referral_code = Auth::user()->referral_code;
$referral_code_url = URL::to('/product').'/'.$detailedProduct->slug."?product_referral_code=$referral_code";
}
@endphp
{{ translate('Copy the Promote Link')}}
@endif
@php
$refund_request_addon = \App\Addon::where('unique_identifier', 'refund_request')->first();
$refund_sticker = \App\BusinessSetting::where('type', 'refund_sticker')->first();
@endphp
@if ($refund_request_addon != null && $refund_request_addon->activated == 1 && $detailedProduct->refundable)
{{ translate('Refund')}}:
@endif