@extends('layouts.master') @section('title', 'Dashboard') @section('pagetitle', 'Mentors Overview') @section('styles') @endsection @section('content')
@include('layouts.partials.messages')

OverView

@foreach($mentorsMentees as $mentorMentee) @endforeach
Mentor Name Mentor Email Assignable Mentees 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') : "-" }} @foreach($mentorMentee->mentor->careers as $career) {{$career->career_name}}, @endforeach {{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