@extends('layouts.master') @section('title', 'Mentor-Mentee Manual Matching') @section('pagetitle', 'Manual Mentor-Mentee Matching') @section('styles') @endsection @section('content')

{{ __('Mentor-Mentee Match') }}

@include('layouts.partials.messages')
@foreach($mentorsMentees as $mentorMentee) @endforeach
Mentor Name Mentor Email Career Interests Assigned Mentees Mentee Name Mentee Email Date added Action
{{ !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) : "-" }}
@endsection @section('scripts') {!! JsValidator::formRequest('Guildroom\Http\Requests\Super\AssignMentorToMenteeRequest', '#appointment-form') !!} @stop