@extends('frontend.include.layout') @section('content') @if(count($home_advertisements_tops) != 0)
@foreach($home_advertisements_tops as $key => $home_advertisementdetail) @include('frontend.include.advertisementdesign') @endforeach
@endif @if($asset_categorys) @endif @if($home_recently_viewed_count != 0)

Recently Viewed

@foreach($home_recently_vieweds as $key => $home_recently_viewed) @php $asset_detail= \App\Models\AssetDetails::where('id',$home_recently_viewed->asset_id)->first(); @endphp @include('frontend.include.assetsingle') @endforeach
@endif

Popular Assets

See More
@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::where('verified_id','1')->orderByDesc('created_at')->limit('8')->get(); @endphp @foreach($asset_details_all as $key => $asset_detail) @include('frontend.include.assetsingle') @endforeach
@if(count($home_advertisements_centers) != 0)
@foreach($home_advertisements_centers as $key => $home_advertisementdetail) @include('frontend.include.advertisementdesign') @endforeach
@endif
@foreach($actor_details as $key => $actor_detail) @include('frontend.include.actorsingle') @endforeach
@if(count($home_advertisements_bottoms) != 0)
@foreach($home_advertisements_bottoms as $key => $home_advertisementdetail) @include('frontend.include.advertisementdesign') @endforeach
@endif @if(count($home_advertisements_bottoms) != 0)
@foreach($home_advertisements_bottoms as $key => $home_advertisementdetail) @include('frontend.include.advertisementdesign') @endforeach
@endif @endsection