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.
33 lines
588 B
33 lines
588 B
@extends('layouts.user-profile-wide')
|
|
|
|
@section('subtitle', trans('app.family_tree'))
|
|
|
|
@section('user-content')
|
|
|
|
<?php
|
|
$childsTotal = 0;
|
|
$grandChildsTotal = 0;
|
|
$ggTotal = 0;
|
|
$ggcTotal = 0;
|
|
$ggccTotal = 0;
|
|
?>
|
|
|
|
<div id="wrapper">
|
|
{!! createFamilyTree($user) !!}
|
|
</div>
|
|
|
|
<div class="container">
|
|
<hr>
|
|
<div class="row">
|
|
<div class="col-md-1"> </div>
|
|
{!! showFamilyTreeCount($user, 4) !!}
|
|
<div class="col-md-1"> </div>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
@section ('ext_css')
|
|
<link rel="stylesheet" href="{{ asset('css/tree.css') }}">
|
|
@endsection
|
|
|