@extends('layouts.layout-2') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(isset($error))
{{ $error }}
@endif

{{ __('navigation.my_team') }}

{{__('team.business')}} {{__('team.structure')}} @if(isset($performance) && isset($performance['version'])) @if($performance['version'] === 'Optimized') {{ __('team.optimized') }} @elseif($performance['version'] === 'Standard') {{ __('team.standard_monitoring') }} @elseif($performance['version'] === 'Fallback') {{ __('team.fallback') }} @endif @endif
{!! Form::open(['action' => route('user_team_structure'), 'class' => 'form-horizontal', 'id'=>'form_filter_business_user']) !!}
{!! Form::close() !!} @if(isset($performance) && config('app.debug'))
{{ __('team.loading_time') }} {{ $performance['execution_time'] }}ms
{{ __('team.memory') }} {{ $performance['memory_used'] }}
{{ __('team.team_members') }} {{ $performance['user_count'] }}
@endif
@if(isset($performance) && config('app.debug'))
@if(config('app.debug')) @if(isset($performance['version']) && $performance['version'] === 'Standard') {{ __('team.test_optimized') }} @else {{ __('team.standard_version') }} @if(isset($performance['calculation_type']) && $performance['calculation_type'] === 'Live') Live berechnen aus @else Live berechnen @endif @endif @endif
@endif
{{ __('team.your_sponsor') }}
{!! $TreeCalcBot->makeSponsorHtml() !!}

{{ __('team.your_team') }}
{!! $TreeCalcBot->makeHtmlTree() !!}
@if(isset($performance)) @endif @endsection