You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.1 KiB
27 lines
1.1 KiB
<div class="panel panel-default table-responsive">
|
|
<table class="table table-bordered table-striped">
|
|
<tbody>
|
|
<tr>
|
|
<th style="width: 35%">Saudara</th>
|
|
<th class="text-center" colspan="{{ $sibling->childs->count() }}">{{ $sibling->profileLink('chart') }} ({{ $sibling->gender }})</th>
|
|
</tr>
|
|
<tr>
|
|
<th>Keponakan & Cucu-Cucu</th>
|
|
<td>
|
|
<ol style="padding-left: 15px">
|
|
@foreach($sibling->childs as $child)
|
|
<li style="margin-top: 10px;">
|
|
{{ $child->profileLink('chart') }} ({{ $child->gender }})
|
|
<ul style="padding-left: 18px">
|
|
@foreach($child->childs as $grand)
|
|
<li>{{ $grand->profileLink('chart') }} ({{ $grand->gender }})</li>
|
|
@endforeach
|
|
</ul>
|
|
</li>
|
|
@endforeach
|
|
</ol>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|