@php $bestSelling = getContent('marketplace.content', true); $bestSellingProducts = \App\Models\Product::approved() ->with('author') ->orderByDesc('total_sold') ->limit(5) ->get(); @endphp

{{ __(@$bestSelling->data_values->title) }}

@lang('View All Items')
@foreach ($bestSellingProducts as $product) @endforeach