@extends('layouts/contentNavbarLayout') @section('title', 'Staff Profile') @section('page-script') @endsection @section('content')
Avatar

{{ $parent->full_name }}

About
  • Full Name: {{ $parent->full_name }}
  • Phone Number: {{ $parent->phone }}
  • Address: {{ $parent->address }}
  • Zipcode: {{ $parent->zipcode }}
Login Details
  • Email: {{ $parent->email }}
  • Password: ••••••
    {{-- --}}
@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
@endsection