@extends('layouts.user', ['heading' => 'Binary Tree / बायनरी ट्री']) @section('content')
Weak Leg: {{ ucfirst($weakLeg) }}
You
{{ $user->member_code }}
{{ $user->name }}
Left
@if($left)
{{ $left->member_code }}
{{ $left->name }}
{{ $left->status }}
@else
Empty
@endif
Business: {{ number_format($leftBusiness, 2) }}
Right
@if($right)
{{ $right->member_code }}
{{ $right->name }}
{{ $right->status }}
@else
Empty
@endif
Business: {{ number_format($rightBusiness, 2) }}
Tip: Zoomable full tree view will be available in the advanced tree module.
@endsection