@foreach($onsale_assetdetails as $key => $onsale_assetdetail)
@php
$publish_asset_detail= \App\Models\PublishedAssetDetails::where('id',$onsale_assetdetail->id)->first();
@endphp
@include('frontend.include.assetsingle')
@endforeach
@foreach($topselling_assetdetails as $key => $topselling_assetdetail)
@php
$publish_asset_detail= \App\Models\PublishedAssetDetails::where('id',$topselling_assetdetail->id)->first();
@endphp
@include('frontend.include.assetsingle')
@endforeach
@php
$publish_asset_details= \App\Models\PublishedAssetDetails::orderByDesc('created_at')->limit('8')->get();
@endphp
@foreach($publish_asset_details as $key => $publish_asset_detail)
@include('frontend.include.assetsingle')
@endforeach
@php
$publish_asset_details= \App\Models\PublishedAssetDetails::Where('cost', '0.00')->limit('8')->get();
@endphp
@foreach($publish_asset_details as $key => $publish_asset_detail)
@include('frontend.include.assetsingle')
@endforeach
@php
$publish_asset_details= \App\Models\PublishedAssetDetails::where('verified_id','1')->limit('8')->get();
@endphp
@foreach($publish_asset_details as $key => $publish_asset_detail)
@include('frontend.include.assetsingle')
@endforeach