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