@extends('emails.layouts.main') @section('title', 'Instructor Login Notification') @section('content')
@if($user->biography) @endif
Instructor Login Detected
An instructor has logged into the system. Here are the details:
@if($user->instructor_total_courses) @endif @if($user->instructor_total_students) @endif @if($user->instructor_total_rating) @endif
Instructor ID: {{ $user->id }}
Name: {{ $user->full_name }}
Email: {{ $user->email }}
Login Time: {{ $loginTime }}
Total Courses: {{ $user->instructor_total_courses }}
Total Students: {{ $user->instructor_total_students }}
Average Rating: {{ number_format($user->instructor_total_rating, 2) }} / 5.0
Biography:
{{ Str::limit($user->biography, 200) }}
ℹ️ Activity Notice
This is an automated notification that an instructor has accessed the system. No action is required unless suspicious activity is detected.
View Instructor Profile
@endsection