@if ($inactive === false)
@if ($isOnline) {{ $org->name }} @elseif ($isAway) {{ $org->name }} @else {{ $org->name }} @endif

{{ $org->name }}

@if ($isOnline) {{ __('Online') }} @elseif ($isAway) {{ __('Online') }} @endif @livewire('like-button', ['model' => $org, 'reactionCounter' => $org->reactionCounter, 'typeName' => 'Star'])

{{ $org->motivation }}

@if ($friend && $phone) @endif @if (session('activeProfileType') === $org::class && session('activeProfileId') !== $org->id || session('activeProfileType') !== $this->org::class)
@if (count($friend) < 1 && count($pendingFriend) < 1)
{{ __('Friend request') }}
@elseif (count($pendingFriend) > 0 )
{{ __('Cancel friend request') }}
@else
{{ __('Remove as Friend') }}
@endif
@endif
@if ($org->about && strlen($org->about) > 300 )

{{ Illuminate\Support\Str::limit($org->about ?? '', 300) }} {{ $org->about ?? '' }} {{__('Read more')}}... {{__('Show less')}}...

@else

{{ $org->about ?? '' }}

@endif
@foreach($org->languages as $language)

{{ $language['flag'] }}

{{ trans($language['name']) }}, {{ trans($language->competence_name) }}

@if (!$loop->last)

|

@endif @endforeach
@if($org->lang_preference)
{{ trans($org->lang_preference) }} {{ __('is preferred') }}
@endif
@foreach($skills->sortBy('category_color') as $skill) {{ $skill['name'] }} @endforeach
@if(timebank_config('account_info.account_totals.sumBalances_public'))

{{ tbFormat($accountsTotals['sumBalances']) }} {{ __('available') }}

@endif @if(timebank_config('account_info.account_totals.countTransfers_public')) @if(!timebank_config('account_info.account_totals.sumBalances_public'))

{{ __('Exchanges') }}



@endif @if(timebank_config('account_info.account_totals.countTransfersReceived_public')) @if ($accountsTotals['transfersReceived'] === 1)

{{ $accountsTotals['transfersReceived'] }} {{__('× received') . ' ' . trans((timebank_config('account_info.account_totals.countTransfersSince_humanReadable'))) }}

@else

{{ $accountsTotals['transfersReceived'] }} {{__('× received') . ' ' . trans((timebank_config('account_info.account_totals.countTransfersSince_humanReadable'))) }}

@endif @endif @if(timebank_config('account_info.account_totals.countTransfersGiven_public')) @if($accountsTotals['transfersGiven'] === 1)

{{ $accountsTotals['transfersGiven'] }} {{__('× given') . ' ' . trans((timebank_config('account_info.account_totals.countTransfersSince_humanReadable'))) }}

@else

{{ $accountsTotals['transfersGiven'] }} {{__('× given') . ' ' . trans((timebank_config('account_info.account_totals.countTransfersSince_humanReadable'))) }}

@endif @endif @if(!timebank_config('account_info.account_totals.countTransfersReceived_public') && !timebank_config('account_info.account_totals.countTransfersGiven_public'))

{{ $accountsTotals['transfersReceived'] + $accountsTotals['transfersGiven'] }} {{__('×') . ' ' . trans((timebank_config('account_info.account_totals.countTransfersSince_humanReadable'))) }}

@endif @endif
@if ($lastLoginAt)
{{ __('Last login') . ': ' . $lastLoginAt }}
@else
@endif @if ($lastExchangeAt)
{{ __('Last exchange') . ': ' . $lastExchangeAt }}
@endif
{{ __('Registered since') . ': ' . $registeredSince }}
@if($socials && count($socials) > 0)
{{ __('Social media accounts') }}
@foreach($socials as $value) {{ $value->name }} @endforeach
@endif
{{--
Red-200
Orange-200
Amber-200
Yellow-200
Lime-200
Green-200
Emerald-200
Teal-200
Cyan-200
Sky-200
Blue-200
gray-200
Violet-200
Purple-200
Fuchsia-200
Pink-200
Red-300
Orange-300
Amber-300
Yellow-300
Lime-300
Green-300
Emerald-300
Teal-300
Cyan-300
Sky-300
Blue-300
gray-300
Violet-300
Purple-300
Fuchsia-300
Pink-300
--}} @else @endif