@extends('layouts.app')
@section('content')
    
        
        
        
            
                
                
                
                
                
                
                @foreach ($categories as $category => $categoryDocs)
                    
                        {{ $category }}
                        
                            @foreach ($categoryDocs as $doc)
                                
                                    
                                    {{ str_replace(['🏠', '📚', '🔧', '⚙️', '🏫', '👨🎓', '⬆️', '💰', '👨🏫', '👔', '📅', '📝', '🕐', '📚', '📢', '📆'], '', $doc['title']) }}
                                
                            @endforeach
                        
 
                @endforeach
            
 
         
        
        
            
                
                
                
                
                
                    
                         On This Page
                    
                    
                    @if(count($toc) > 0)
                        
                    @else
                        
No sections available
                    @endif
                    
                    
                 
             
         
     
 
@endsection