@extends('layouts.public') @section('title') {{trans('seo.title.posts')}} @endsection @section('description') {{trans('seo.description.posts')}} @endsection @section('image', asset('images/share/posts.jpg')) @section('content')
@foreach($posts->chunk(3) as $chunk)
@foreach($chunk as $post)
{{$post->title}}
{{$post->date}}
@endforeach
@endforeach
@endsection