blob: bb919a49f32d90e7a50891cda3baae6972ca58ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
pagination:
collection: posts
---
@extends('_layouts.master')
@section('article')
<ol>
@foreach ($pagination->items as $post)
@include('_partials.postStub')
@endforeach
</ol>
<nav>
@if ($pagination->previous)
<a href="{{ $pagination->previous }}">See more recent posts</a>
@endif
@if ($pagination->next)
<a href="{{ $pagination->next }}">See older posts</a>
@endif
</nav>
@endsection
|