@extends('admin.layouts.app') @section('title', 'Astrologers') @section('content')
Manage and monitor astrologer accounts and activities.
| Astrologer | Contact | Enrollment | Status | Joined | Actions |
|---|---|---|---|---|---|
|
@if($astrologer->astrologerDetail && $astrologer->astrologerDetail->profile_pic)
{{ $astrologer->name }} {{ $astrologer->email }} |
{{ $astrologer->astrologerDetail->mobile ?? $astrologer->mobile ?? 'N/A' }} | @if($astrologer->astrologerDetail && $astrologer->astrologerDetail->is_enrollment_paid) Paid @else Unpaid @endif | {{ $astrologer->is_active ? 'Active' : 'Inactive' }} | {{ $astrologer->created_at->format('M d, Y') }} | |
|
No astrologers registered yet. |
|||||