class PendingEmailStudentPortal extends Model{ use HasFactory; protected $guarded = [ 'id', 'student_id', 'created_at', 'updated_at', ]; public function student(): BelongTo { return $this->belongTo(Student::class); }}