@foreach ($parent->students as $index => $child)
Children {{ $index + 1 }}
{{ $child->account_type == 'paid' ? 'Paid' : 'Free' }}
- Full Name:
{{ $child->user->full_name }}
- Email:
{{ $child->user->email }}
- Phone
Number:
{{ $child->user->phone }}
@if ($child->school)
- School:
{{ $child->school }}
@endif
Level:
{{ $child->level->title ?? '' }}
Type/Category:
{{ $child->category->name ?? 'Regular' }}
@endforeach