@php /** @var App\Models\BioLink $bioLink */ /** @var App\Models\BioTheme $bioTheme */ use App\Enums\SocialLinksPosition; @endphp {{ $bioLink->title }} @include('themes.tailwind.page.styles', ['theme' => $bioTheme, 'bioLink' => $bioLink])
@if($bioLink->profile_image) {{__('Profile Image')}} @else
{{ mb_substr($bioLink->title, 0, 1) }}
@endif @if($bioLink->social_links_position == SocialLinksPosition::TOP) @include('themes.tailwind.page.social-links') @endif

{{ $bioLink->title }}

@if($bioLink->description)

{{ $bioLink->description }}

@endif @include('themes.tailwind.page.links', [ 'links' => $bioLink->links()->whereIn('type', config('links.types_when_creating'))->where('is_active', 1)->orderBy('sort')->get(), 'theme' => $bioTheme ]) @if($bioLink->social_links_position == SocialLinksPosition::BOTTOM) @include('themes.tailwind.page.social-links') @endif