@extends('mentor.layouts.master') @section('title', 'Mentees - Mentor') @section('pagetitle', 'Mentees - Mentor') @section('content') @include('layouts.partials.breadcrumbs', ['breadcrumbs' => [ ['url' => route('mentor.dashboard'), 'title' => __('Home')], ['url' => route('mentor.mentees'), 'title' => __('Mentees')] ]])
@include('layouts.partials.messages')

Mentees

Mentee's List

@forelse($mentees as $mentee)

{{$mentee->mentee->last_login ? $mentee->mentee->last_login->diffForHumans() : "" }}

{{$mentee->mentee->getFullName()}}

Active {{$mentee->mentee->last_login ? $mentee->mentee->last_login->diffForHumans() : "Unknown" }}

@empty

No mentee yet

@endforelse
@endsection