@if ($productItem->sale_type == 1)
{{ translate('Auction') }}
@else
{{ translate('General') }}
@endif
@if ( currentDate() < $productItem->start_date )
{{translate('Comning Soon')}}
@endif
@if ($productItem->features_image)
 }})
@else
 }})
@endif
@if ($productItem->sale_type == 1)
@php
$auctionDate= currentDate() < $productItem->start_date ? $productItem->start_date : $productItem->end_date
@endphp
@endif
@if (fileExists('uploads/shop/', $productItem?->users?->shop?->logo) != false && $productItem?->users?->shop?->logo != null)
 }})
@else
 }})
@endif
@if ($productItem->sale_type == 1)
@php
$latest_bid = latestBidPrice($productItem->id);
@endphp
@if (isset($latest_bid->bid_amount))
{{ translate('Current bid') }}:
{{ currency_symbol() }}{{ $latest_bid->bid_amount ?? $productItem->min_bid_price }}
@else
{{ translate('Bidding Price') }}:
{{ currency_symbol() }}{{ $latest_bid->bid_amount ?? $productItem->min_bid_price }}
@endif
@else
{{ translate('Price') }} : @if ($productItem->sale_price)
{{ currency_symbol() . $productItem->price }}
{{ currency_symbol() . $productItem->sale_price }}@else{{ currency_symbol() . $productItem->price }}
@endif
@endif