|
|
|
@ -8,9 +8,12 @@ |
|
|
|
@include('couples.partials.stat') |
|
|
|
<br> |
|
|
|
<h4 class="page-header">{{ trans('user.childs') }} & {{ trans('user.grand_childs') }}</h4 class="page-header"> |
|
|
|
@if ($couple->childs->isEmpty()) |
|
|
|
<i>{{ trans('app.childs_were_not_recorded') }}</i> |
|
|
|
@else |
|
|
|
<?php $no = 0; ?>
|
|
|
|
@foreach($couple->childs->chunk(4) as $chunkedChild) |
|
|
|
<div class=""> |
|
|
|
<div class="row"> |
|
|
|
@foreach($chunkedChild as $child) |
|
|
|
<div class="col-md-3"> |
|
|
|
<h4><strong>{{ ++$no }}. {{ $child->profileLink() }} ({{ $child->gender }})</strong></h4> |
|
|
|
@ -26,4 +29,5 @@ |
|
|
|
@endif |
|
|
|
</div> |
|
|
|
@endforeach |
|
|
|
@endif |
|
|
|
@endsection |