{{-- Tabbed description + insights box. Expects: $video (Video model) Optionally accepts: $descriptionSlot — raw HTML to show in the About tab body --}} @php $isVideoOwner = Auth::check() && Auth::id() === $video->user_id; $hasDesc = !empty($video->description) || isset($descriptionSlot); $showBox = $hasDesc || $isVideoOwner; $fullDescription = $video->description ?? ''; $shortDescription = Str::limit($fullDescription, 200); $needsExpand = strlen($fullDescription) > 200; @endphp @if ($showBox)
No description added.
@endif