@extends('frontend.layouts.app') @section('title', 'BLOG') @section('content') @if(count($posts) !=0 )
@foreach($posts as $post)
Awesome Image

{{getTranslationPost($post->id)['title']}}

{!! substr(strip_tags(getTranslationPost($post->id)['description']), 0, 400) !!}....
@endforeach
    {{$posts->links()}}
@endif @endsection @section('scripts') @endsection