Your hourly and daily fees are used to automatically calculate childcare fees. If you do not wish to send invoices based on your attendance or hourly fees, leave this section blank.
@if(isset($setup->rooms) && !empty($setup->rooms))
@foreach ($setup->rooms as $key => $room)
@endforeach
@endif
Set different rates for specific children
Reset
@if(isset($setup->rooms) && !empty($setup->rooms))
@foreach ($setup->rooms as $key => $room)
-
{{$room->room->name}}
@endforeach
@endif
@if(isset($setup->rooms) && !empty($setup->rooms))
@foreach ($setup->rooms as $key => $room)
@php $childs = collect($setup->children)->where('child.room', $room->room->_id)->all(); @endphp
@if(isset($childs) && !empty($childs))
@foreach ($childs as $child)
@endforeach
@endif
@endforeach
@endif