@extends('frontend.layouts.app') @section('title', 'BLOG') @section('content') BLog Accueil Bblog @csrf @if(count($posts) !=0 ) @foreach($posts as $post) {{$post->created_at->format('d-m-Y')}} {{getTranslationPost($post->id)['title']}} {!! substr(strip_tags(getTranslationPost($post->id)['description']), 0, 400) !!}.... Read More @endforeach Categories @foreach($categoriesPost as $cat_post) {{getTranslationCategoriePost($cat_post->id)['name']}} - ({{$cat_post->posts->count()}}) @endforeach Tags @foreach($tags as $tag) {{ getTranslationTag($tag->id)['name']}} @endforeach {{$posts->links()}} @endif @endsection @section('scripts') @endsection