---
pagination:
collection: posts
perPage: 4
---
@extends('_layouts.master')
@push('meta')
@endpush
@section('body')
Blog
@foreach ($pagination->items as $post)
@include('_components.post-preview-inline')
@if ($post != $pagination->items->last())
@endif
@endforeach
@if ($pagination->pages->count() > 1)
@endif
@stop