@extends('layouts.app') @section('content') @include('couples.partials.stat')
@if ($couple->childs->isEmpty()) {{ trans('app.childs_were_not_recorded') }} @else @foreach($couple->childs->chunk(4) as $chunkedChild)
@foreach($chunkedChild as $child)

{{ ++$no }}. {{ $child->profileLink() }} ({{ $child->gender }})

@endforeach @if (! $loop->last)

@endif
@endforeach @endif @endsection