@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.
@endif
@foreach($posts as $post)
@if($post->image != '')
@endif
{!! $tag_detector->linkTagFrom($post->content) !!}
@endforeach
@endsection