@php
$fullDescription = $tutor?->profile?->description;
$shortDescription = Str::limit(strip_tags($fullDescription), 460, preserveWords: true);
@endphp
@if (Str::length(strip_tags($fullDescription)) > 460)
{!! $shortDescription !!}
{{ __('general.show_more') }}
@else
{!! $fullDescription !!}
@endif