@extends('layouts.public') @section('title') {{trans('seo.title.posts')}} @endsection @section('content')
@foreach($posts->chunk(3) as $chunk)
@foreach($chunk as $post) @endforeach
@endforeach
{!!$posts->links()!!}
@endsection