@foreach($onsale_assetdetails as $key => $onsale_assetdetail)
@php
$asset_detail= \App\Models\AssetDetails::where('id',$onsale_assetdetail->asset_id)->first();
@endphp
@if($key < '15')
@include('frontend.include.assetsingle')
@endif
@endforeach
@foreach($topselling_assetdetails as $key => $topselling_assetdetail)
@php
$asset_detail= \App\Models\AssetDetails::where('id',$topselling_assetdetail->asset_id)->first();
@endphp
@include('frontend.include.assetsingle')
@endforeach
@php
$asset_details_all= \App\Models\AssetDetails::orderByDesc('created_at')->limit('8')->get();
@endphp
@foreach($asset_details_all as $key => $asset_detail)
@include('frontend.include.assetsingle')
@endforeach
@php
$asset_details_all= \App\Models\AssetDetails::where('pricetype','2')->limit('8')->get();
@endphp
@foreach($asset_details_all as $key => $asset_detail)
@include('frontend.include.assetsingle')
@endforeach
@php
$asset_details_all= \App\Models\AssetDetails::orderByDesc('created_at')->limit('8')->get();
@endphp
@foreach($asset_details_all as $key => $asset_detail)
@include('frontend.include.assetsingle')
@endforeach