@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 $publish_asset_detail= \App\Models\PublishedAssetDetails::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 $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
@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 @endsection @section('script') @include('frontend.include.asset-js') @endsection