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

ID:{{ $actor_detail->actor_id }}

Actor since June 24, 2026
@for ($starcount=0 ; $starcount<5; $starcount++) @if($starcount<=$actor_detail->starrating) @else @endif @endfor (0) |
(0)
product image
@php $display_count_follower_actor= \App\Models\FollowerActor::where('actor_id',$actor_detail->id)->where('status','1')->count(); $check_follower_actor=''; if(auth()->user()) { $check_follower_actor= \App\Models\FollowerActor::where('actor_id',$actor_detail->id)->where('user_id',auth()->user()->id)->where('status','1')->count(); } @endphp @if($check_follower_actor == 1) @elseif($check_follower_actor == 0) @else @endif
@if(auth()->user()) @else @endif


{{ $actor_detail->actor_description }}


Customer reviews


@php $comments5star=\App\Models\ActorComments::where('actor_id',$actor_detail->id)->where('starcount','5')->whereNull('parent_id')->count(); @endphp 5 star({{ $comments5star }})
{{ $comments5star }}
@php $comments4star=\App\Models\ActorComments::where('actor_id',$actor_detail->id)->where('starcount','4')->whereNull('parent_id')->count(); @endphp 4 star({{ $comments4star }})
{{ $comments4star }}
@php $comments3star=\App\Models\ActorComments::where('actor_id',$actor_detail->id)->where('starcount','3')->whereNull('parent_id')->count(); @endphp 3 star({{ $comments3star }})
{{ $comments3star }}
@php $comments2star=\App\Models\ActorComments::where('actor_id',$actor_detail->id)->where('starcount','2')->whereNull('parent_id')->count(); @endphp 2 star({{ $comments2star }})
{{ $comments2star }}
@php $comments1star=\App\Models\ActorComments::where('actor_id',$actor_detail->id)->where('starcount','1')->whereNull('parent_id')->count(); @endphp 1 star({{ $comments1star }})
{{ $comments1star }}

Customer questions & answers

@php $comments=\App\Models\ActorComments::where('actor_id',$actor_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 10:46:02am

@if(auth()->user()) Reply @else @endif
@php $commentreplayscount=\App\Models\ActorComments::where('parent_id',$comment->id)->count(); @endphp @if($commentreplayscount != 0) @php $commentreplays=\App\Models\ActorComments::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 10:46:02am

@endforeach @endif @endforeach

Add a review

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

Contact Details

{{ $actor_detail->address }}
{{ $actor_detail->district }} , {{ $actor_detail->state }} , {{ $actor_detail->pincode }} , {{ $actor_detail->country }}

@php $user_detail= \App\Models\User::where('id',$actor_detail->actor_user_id)->first(); @endphp {{ $user_detail->email }}
{{ $user_detail->phone }}
Website Click Here


Consulting offerings


@php $asset_categorys = \App\Models\AssetCategory::orderByDesc('created_at')->get(); @endphp @foreach ($asset_categorys as $key => $asset_category)

     $

@endforeach

@endsection