@php $upcomingAuction = getContent('upcoming_auction.content', true); $upcomingProducts= \App\Models\Product::where('started_at', '>', now())->where('status', 1)->latest()->limit(8)->get(); @endphp

{{ __($upcomingAuction->data_values->heading) }}

@foreach ($upcomingProducts as $product)
auction @lang('x') {{ ($product->total_bid) }} @lang('Bids')
{{ shortDescription($product->name, 20) }}
  • @lang('00')
  • @lang('00')
  • @lang('00')
  • @lang('00')
Carbon Credits: {{ showAmount($product->carbon_amount) }}
@endforeach