@extends('layouts.connected')
@inject('tag_detector', 'App\Services\TagDetectorService)
@section('content')
    
    
        
            
                
                    
                      
                    
                    
                        
{{ $all_counts }}
                        {{ __('Jours Écrits') }}
                    
                 
             
         
        
            
                
                    
                      
                    
                    
                        
{{ $year_counts }}
                        {{ __('Cette Année') }}
                    
                 
             
         
        
            
                
                    
                      
                    
                    
                        
{{ $month_counts }}
                        {{ __('Ce Mois') }}
                    
                 
             
         
        
            
                
                    
                      
                    
                    
                        
{{ $image_counts }}
                        {{ __('Images Envoyées') }}
                    
                 
             
         
        
            @if($already)
                
L'activité du jour a déjà été entrée.
            @else
                
            @endif
        
        @foreach($posts as $post)
            
                
                    
                    
                    
                        {!! $tag_detector->linkTagFrom($post->content) !!}
                    
                    
                 
             
        @endforeach
    
 
 
@endsection