Skip to content

Commit 040e7f0

Browse files
committed
Adds paginator props.
1 parent 14d25b0 commit 040e7f0

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

stubs/resources/js/Pages/BlogAuthor/AuthorIndex.vue

+3
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@
9090

9191
<AppPaginator
9292
:links="authors.links"
93+
:from="authors.from || 0"
94+
:to="authors.to || 0"
95+
:total="authors.total || 0"
9396
class="mt-4 justify-center"
9497
></AppPaginator>
9598

stubs/resources/js/Pages/BlogCategory/CategoryIndex.vue

+3
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@
8787

8888
<AppPaginator
8989
:links="categories.links"
90+
:from="categories.from || 0"
91+
:to="categories.to || 0"
92+
:total="categories.total || 0"
9093
class="mt-4 justify-center"
9194
></AppPaginator>
9295

stubs/resources/js/Pages/BlogPost/PostIndex.vue

+3
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@
8787

8888
<AppPaginator
8989
:links="posts.links"
90+
:from="posts.from || 0"
91+
:to="posts.to || 0"
92+
:total="posts.total || 0"
9093
class="mt-4 justify-center"
9194
></AppPaginator>
9295

stubs/resources/js/Pages/BlogTag/TagIndex.vue

+3
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@
6868

6969
<AppPaginator
7070
:links="tags.links"
71+
:from="tags.from || 0"
72+
:to="tags.to || 0"
73+
:total="tags.total || 0"
7174
class="mt-4 justify-center"
7275
></AppPaginator>
7376

0 commit comments

Comments
 (0)