@extends('layouts.app') @section('title', 'მშობლის კაბინეტი') @section('content')
YOUR FAMILY SPACE

გამარჯობა, {{ explode(' ',auth()->user()->name)[0] }}

ბავშვების განრიგი, დასწრება და კლუბის სიახლეები.

ჩემი ბავშვები{{ $children->count() }}
გადასახდელი ნაშთი{{ \App\Support\Money::format($invoices->sum('balance_cents')) }}
უახლოესი გაკვეთილები{{ $lessons->where('status','scheduled')->count() }}
@foreach($children as $child)
{{ mb_substr($child->first_name,0,1) }}

{{ $child->name }}

{{ $child->enrollments->pluck('group.name')->unique()->join(' · ') }}
@endforeach

გადასახადები

@include('parts.invoices')

უახლოესი განრიგი

@include('parts.lessons')

რეგისტრაციის განაცხადები

@foreach($applications as $a)@endforeach
{{ $a->child->name }}{{ $a->group->name }}{{ $a->reason }}

დასწრების ისტორია

@foreach($attendance as $at)@endforeach
ბავშვიგაკვეთილიდასწრება
{{ $at->child->name }}{{ $at->lesson->group->name }}{{ $at->lesson->local_start->format('d.m.Y H:i') }}
@endsection