@foreach ($data["report"]["schema"] as $indexTab => $tab)
{{--
@if ($tab["name"] === "output_energy")
@else
@endif
--}}
@foreach ($tab["rows"] as $indexRow => $items)
@foreach ($items as $indexItem => $item)
@if($item["is_detail"] === false)
@if($item["driven"] === false)
{!!__("report.".$item["name"]) !!}
@if ($item["tooltip"])
@endif
@else
{{__("report.".$item["name"])}}
@if ($item["tooltip"])
@endif
@endif
@endif
@endforeach
@endforeach
@endforeach