@extends('user.layouts.app') @section('content')

{{ucfirst(@$profile_info->first_name)}} {{ucfirst(@$profile_info->last_name)}}

{{ @$profile_percentage }}%
Profile completeness
@if(!empty($incomplete_warning_info))
@endif

{{ucfirst(@$profile_info->first_name)}} {{ucfirst(@$profile_info->last_name)}}

@include('user.includes.status')
    @if(!empty($profile_info->street) || !empty($profile_info->city) || !empty($profile_info->zip_code))
  • {{ $profile_info->street }}{{ (!empty($profile_info->street)) ? ', ' : '' }}{{ $profile_info->city }}{{ (!empty($profile_info->city)) ? ', ' : '' }}{{ $profile_info->zip_code }}
  • @endif @if(!empty($profile_info->email))
  • {{ $profile_info->email }} @if(!empty($profile_info->new_email) && empty($profile_info->new_email_verified)) [Unverified]
    [Click Here to get verification link] @endif
  • @endif

Favorites

{{ @$favourite_count }}

Likes

{{ @$topic_like_count }}

Topics

{{ @$topic_count }}

Following

{{ @$following_count }}

Comments

{{ @$comment_count }}

@if(count($user_favorite_topic)>0)

My Favorites

@foreach($user_favorite_topic as $key => $topic) @if($key < 2) @php $topic_url = route("topicdetail",$topic->ft_slug); @endphp

You'll get a notification whenever someone comments on this topic.

Turn OFF Notifications

You'll no longer get notifications about this topic.

Turn On Notifications

You won't see this topic in your timeline.

Undo

{!! Str::limit($topic->ft_desc, 300, " more..") !!}

by {{ $topic->user_name }} - {{dateformat($topic->ft_created_at,"F d")}}
@endif @endforeach @endif
@endsection @section('scripts') @stop