@extends('layouts.app')
@section('content')
@include('couples.partials.stat')
@foreach($couple->childs->chunk(4) as $chunkedChild)
@foreach($chunkedChild as $child)
{{ ++$no }}. {{ $child->profileLink() }} ({{ $child->gender }})
@foreach($child->childs as $grand)
- {{ $grand->profileLink() }} ({{ $grand->gender }})
@endforeach
@endforeach
@if (! $loop->last)
@endif
@endforeach
@endsection