| Name | : {{ $user->name }} | ||
|---|---|---|---|
| |||
| Mobile | : {{ !empty($user->mobile) ? $user->mobile : 'Not added' }} | ||
| Bio Description | : {{ !empty($user->Profile->bio_description) ? $user->Profile->bio_description : 'Not added' }} | ||
| Gender | : {{ !empty($user->Profile->gender) ? $user->Profile->gender : 'Not added' }} | ||
| DOB | {{ !empty($user->Profile->dob) ? $user->Profile->dob : 'Not added' }} | ||
Tagline | @livewire('UserTaglineManage',['user_id'=>\Crypt::encrypt($user->id)]) | ||
| Alma Mate | : {{ !empty($user->Profile->alma_mate) ? $user->Profile->alma_mate : 'Not added' }} | ||
| Current Organization | : {{ !empty($user->Profile->current_organization) ? $user->Profile->current_organization : 'Not added' }} | ||
| Education | : {{ !empty($user->Profile->educational) ? $user->Profile->educational : 'Not added' }} | ||
| Profession | : {{ !empty($user->Profile->occupation) ? $user->Profile->occupation : 'Not added' }} |
{{ !empty($user->profile->nick_name) ? $user->profile->nick_name : 'Not added'}}
@php
$avatarPath = optional(optional($user->profile)->avatar)->image_url;
@endphp
Pool 1
-
@foreach($interestsByPool[1] ?? [] as $item)
- {{ $item->interest->name }} (Rank: {{ $item->rank }}) @endforeach
Pool 2
-
@foreach($interestsByPool[2] ?? [] as $item)
- {{ $item->interest->name }} (Rank: {{ $item->rank }}) @endforeach
Preference
-
@foreach($interestsByPool[3] ?? [] as $item)
- {{ $item->interest->name }} (Rank: {{ $item->rank }}) @endforeach
Photos
@foreach($user->ProfilePhotos as $photo)
 }})
@livewire('RemoveUserProfilePhoto',['photo_id'=>$photo->id])
@endforeach
@livewire('RemoveUserProfilePhoto',['photo_id'=>$photo->id])
Videos
@foreach($user->ProfileVideos as $photo)
@livewire('RemoveUserProfilePhoto',['photo_id'=>$photo->id])
@endforeach
Venue Checkins
@if($user->checkins->count()==0)
@endif
No checkins
@else| SL No | Location | Checkin Time | Checkout Time | |
|---|---|---|---|---|
| {{ ($key+1) }} | {{ $checkin->Venue->location }} | {{ date('d M Y',strtotime($checkin->checkin_date)) }} {{ date('h:i:s a',strtotime($checkin->checkin_time))}} | @if($checkin->checkout_time){{ date('d M Y',strtotime($checkin->checkin_date)) }} {{ date('h:i:s a',strtotime($checkin->checkout_time))}} | @elseNo Checkout | @endif
Connected Users
@foreach($connected_users as $connected_user)
@if(!$connected_user)
@continue
@endif
@if($connected_user->ProfilePicture && $connected_user->ProfilePicture->thumbnail_path)
@else
@endforeach
Profile photo is not available
@endif {{ $connected_user->name }}
Rejected Profiles
@foreach($rejected_profiles as $rejected_profile)
@if($rejected_profile->ProfilePicture)
@else
{{ $rejected_profile->name }}
@endforeach
Profile photo is not available
@endif
Blocked Users
@foreach($user->BlockedUsersBlocked as $blocked_user)
@if($blocked_user->ProfilePicture)
@else
{{ $blocked_user->name }}
@endforeach
Profile photo is not available
@endif
Reports against {{ $user->name }}
@if($user->Reports->count()==0)
@endif
No reports
@else| SL No | Reported By | Issue reported | Warning | |||||
|---|---|---|---|---|---|---|---|---|
| {{ ($key+1) }} |
|
{{ $report->description }} | @if($report->Warning){{ $report->Warning->message }} | @elseNo Warning | @endif
Pending received connection requests
@foreach($user->PendingReceivedConnectionRequests as $connection_request)
@php
$sentUser = $connection_request->SentUser;
@endphp
@if(!$sentUser)
@continue
@endif
@if($sentUser->ProfilePicture && $sentUser->ProfilePicture->thumbnail_path)
@else
@endforeach
Profile photo is not available
@endif {{ $sentUser->name }} initiated on {{ date('d/m/Y', strtotime($connection_request->created_at)) }}
Pending sent connection requests
@foreach($user->PendingSentConnectionRequests as $connection_request)
@php
$receivedUser = $connection_request->ReceivedUser;
@endphp
@if(!$receivedUser)
@continue
@endif
@if($receivedUser->ProfilePicture && $receivedUser->ProfilePicture->thumbnail_path)
@else
@endforeach