@extends('portal.ninja2020.layout.app')
@section('meta_title', ctrans('texts.document'))
@section('body')
    
        
            
                
                    
                        {{ ctrans('texts.document') }}
                    
                    
                        {{ ctrans('texts.document_details') }}
                    
                 
                
                    
                        
                            - 
                                {{ ctrans('texts.name') }}
                            
- 
                                {{ Illuminate\Support\Str::limit($document->name, 40) }}
                                
                                    
                                
                            
 
                        
                            
- 
                                {{ ctrans('texts.type') }}
                            
- 
                                {{ App\Models\Document::$types[$document->type]['mime'] }}
                            
                            
- 
                                {{ ctrans('texts.hash') }}
                            
- 
                                {{ $document->hash }}
                            
                            
- 
                                {{ ctrans('texts.size') }}
                            
- 
                                {{ $document->size / 1000 }} kB
                            
                            - 
                                {{ ctrans('texts.width') }}
                            
                                {{ $document->width }}px
                            
                         
                        
                            - 
                                {{ ctrans('texts.height') }}
                            
                                {{ $document->height }}px
                            
                         
                    
 
             
         
     
 
@endsection