@if ($productItem->sale_type == 1) {{ translate('Auction') }} @else {{ translate('General') }} @endif @if ( currentDate() < $productItem->start_date ) {{translate('Comning Soon')}} @endif @if ($productItem->features_image) Acution image @else Acution image @endif @if ($productItem->sale_type == 1) @php $auctionDate= currentDate() < $productItem->start_date ? $productItem->start_date : $productItem->end_date @endphp

D : H : M : S

@endif
@if (fileExists('uploads/shop/', $productItem?->users?->shop?->logo) != false && $productItem?->users?->shop?->logo != null) Shop Logo @else Shop Logo @endif

{{ $productItem->getTranslation('name', $lang) }}

@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
@if ($productItem->sale_type == 1) {{ translate('Place a Bid') }} @else {{ translate('Buy Now') }} @endif