@extends('frontend.include.layout') @section('content')

ID:{{ $asset_detail->asset_id }}

Asset Verified

{{ $asset_detail->asset_name }}

@php $user_detail= \App\Models\User::select('name')->where('id',$asset_detail->userid)->first(); @endphp {{ $user_detail->name }}
@php echo $money = \App\Http\Controllers\AssetDetailsController::displayassetprice($asset_detail->id); @endphp

@php $countorderdetails=0; if(auth()->user()) { $userid=auth()->user()->id; $countorderdetails= \App\Models\Orderdetails::where('user_id',$userid)->where('asset_id',$asset_detail->id)->count(); } @endphp
{{-- --}}
{{-- --}}
@php $check_favourite_asset=''; if(auth()->user()) { $check_favourite_asset= \App\Models\FavouriteAsset::where('asset_id',$asset_detail->id)->where('customer_id',auth()->user()->id)->where('status','1')->count(); } @endphp
@if($check_favourite_asset == 1) @else @endif
@if($countorderdetails == 0)@endif
@php $displayfilesize=''; $displayfiletype=''; $assetardisplays=\App\Models\AssetARFile::where('asset_id',$currentassetid)->where('asset_version_count',$currentassetversioncount)->get(); foreach($assetardisplays as $assetardisplay) { if($displayfilesize == '') { $displayfilesize .=$assetardisplay->filesize; } else { $displayfilesize .=','.$assetardisplay->filesize; } if($displayfiletype == '') { $displayfiletype .=$assetardisplay->filetype; } else { $displayfiletype .=','.$assetardisplay->filetype; } } @endphp
File Size {{ $displayfilesize }}
File Type {{ $displayfiletype }}
Release Date June 24, 2026
Revision Date June 24, 2026
{!! $asset_detail->summary !!}
{!! $asset_detail->content !!}
{!! $asset_detail->description !!}
{!! $asset_detail->quality !!}
@php $comments=\App\Models\Comments::where('asset_id',$asset_detail->id)->whereNull('parent_id')->orderByDesc('created_at')->get(); @endphp @foreach($comments as $comment)
@php $userdetails=\App\Models\User::select('name')->where('id', $comment->user_id)->first(); @endphp
{{ $userdetails->name }}
@for ($starcount=0 ; $starcount<5; $starcount++) @if($starcount<$comment->starcount) @else @endif @endfor

{{ $comment->message }}

June 24, 2026 09:04:29pm

@if(auth()->user()) Reply @else @endif
@php $commentreplayscount=\App\Models\Comments::where('parent_id',$comment->id)->count(); @endphp @if($commentreplayscount != 0) @php $commentreplays=\App\Models\Comments::where('parent_id',$comment->id)->get(); @endphp @foreach($commentreplays as $commentreplay)
@php $userdetails=\App\Models\User::select('name')->where('id', $comment->user_id)->first(); @endphp
{{ $userdetails->name }}

{{ $commentreplay->message }}

June 24, 2026 09:04:29pm

@endforeach @endif @endforeach

Add a review

@csrf
@if(auth()->user()) @else @endif

Keywords

@foreach($array_keywords as $key => $array_keyword) @endforeach


@if(auth()->user())

Report Asset

@else

Report Asset

@endif

Similar Assets

@php $asset_details_all= \App\Models\AssetDetails::orderByDesc('created_at')->get(); @endphp @foreach($asset_details_all as $key => $asset_detail) @include('frontend.include.assetsingle') @endforeach

More from the Actor

@php $asset_details_all= \App\Models\AssetDetails::where('userid', $assetuserid)->orderByDesc('created_at')->get(); @endphp @foreach($asset_details_all as $key => $asset_detail) @include('frontend.include.assetsingle') @endforeach
@php if(auth()->user()) { @endphp