@foreach($report->getHeaders() as $index => $header)
                | {{ $header }}@endforeach | 
    
    @foreach($report->getCategories() as $categoryIndex => $category)
        
            
                @foreach($category->header as $headerIndex => $header)
                    
                @endforeach
            
            @foreach($category->data as $dataIndex => $account)
                
                    @foreach($account as $cellIndex => $cell)
                        
                            
                                {{ $cell }}
                            
                        
                    @endforeach
                
            @endforeach
            
                @foreach($category->summary as $summaryIndex => $cell)
                    
                        
                            {{ $cell }}
                        
                    
                @endforeach
            
            
                
                    Hidden Text
                
            
        
    @endforeach
    
        
            @foreach($report->getOverallTotals() as $index => $total)
                
                    
                        {{ $total }}
                    
                
            @endforeach