@if(count($mentors) > 0)
@foreach ($mentors as $mentor)
@php
$user = App\Models\User::where('id', $mentor->user_id)->first();
$mentor_profile = App\Models\MentorProfile::where('mentor_id', $mentor->id)->first();
@endphp
@if($user->avatar)
@else
@endif
{{$user->first_name}} {{$user->last_name}}
{{$mentor_profile->designation}}
View Profile
@endforeach
@else