@include('layouts.partials.messages')
Mentor Name |
Mentor Email |
Career Interests |
Assigned Mentees |
Mentee Name |
Mentee Email |
Date added |
Action |
@foreach($mentorsMentees as $mentorMentee)
{{ !empty($mentorMentee->mentor->getFullname()) ? $mentorMentee->mentor->getFullname() : "-" }} |
{{ !empty(data_get($mentorMentee->mentor, 'email')) ? data_get($mentorMentee->mentor, 'email') : "-" }} |
@if(count($mentorMentee->mentor->careers) > 0)
@foreach($mentorMentee->mentor->careers as $career)
{{$career->career_name}},
@endforeach
@else
{{ "Not updated yet" }}
@endif
|
{{Guildroom\Models\MentorMentee::query()->where("mentor_id", $mentorMentee->mentor->id)->count()}}
|
{{ !empty($mentorMentee->mentee->getFullname()) ? $mentorMentee->mentee->getFullname() : "-" }} |
{{ !empty(data_get($mentorMentee->mentee, 'email')) ? data_get($mentorMentee->mentee, 'email') : "-" }} |
{{ !empty(show_date($mentorMentee->created_at)) ? show_date($mentorMentee->created_at) : "-" }} |
|
@endforeach