@php $expiredAuction = getContent('recently_expired.content', true); $recentlyExpiredProducts = \App\Models\Product::where('expired_at', '<', now())->latest()->limit(4)->get(); @endphp

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

@foreach ($recentlyExpiredProducts as $product)
auction @lang('x') {{ $product->total_bid }} @lang('Bids')
{{ __($product->name) }}
Carbon Credits: {{ showAmount($product->carbon_amount) }}
Winner Bids Carbon Credits: {{ showAmount($product->winner->bid->carbon_amount) }}
Winner Bids Amount: {{ $general->cur_sym }}{{ showAmount($product->winner->bid->amount) }}
@endforeach