@extends('layouts.app') @section('content')
{{ link_to_route('users.show', 'Lihat Profil '.$user->name, [$user->id], ['class' => 'btn btn-default']) }}
@foreach($childs as $child) @endforeach
Kakek & Nenek {{ $fatherGrandpa ? $fatherGrandpa->profileLink('chart') : '?' }} {{ $fatherGrandma ? $fatherGrandma->profileLink('chart') : '?' }} {{ $motherGrandpa ? $motherGrandpa->profileLink('chart') : '?' }} {{ $motherGrandma ? $motherGrandma->profileLink('chart') : '?' }}
Ayah & Ibu {{ $father ? $father->profileLink('chart') : '?' }} {{ $mother ? $mother->profileLink('chart') : '?' }}
  {{ $user->profileLink('chart') }}
Anak-Anak & Cucu-Cucu {{ $child->profileLink('chart') }}
    @foreach($child->childs as $grand)
  • {{ $grand->profileLink('chart') }}
  • @endforeach
@foreach ($siblings->chunk(4) as $chunkedSiblings)
@foreach ($chunkedSiblings as $sibling)
Saudara {{ $sibling->profileLink('chart') }}
Keponakan & Cucu-Cucu
    @foreach($sibling->childs as $child)
  1. {{ $child->profileLink('chart') }}
      @foreach($child->childs as $grand)
    • {{ $grand->profileLink('chart') }}
    • @endforeach
  2. @endforeach
@endforeach
@endforeach @endsection