Skip to content

Commit 04cd7f8

Browse files
committed
Adds missing props to AppPaginator.
1 parent 0bd93fd commit 04cd7f8

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

stubs/resources/js/Pages/AclPermission/PermissionIndex.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@
7575

7676
<AppPaginator
7777
:links="permissions.links"
78+
:from="permissions.from || 0"
79+
:to="permissions.to || 0"
80+
:total="permissions.total || 0"
7881
class="mt-4 justify-center"
7982
></AppPaginator>
8083

stubs/resources/js/Pages/AclRole/RoleIndex.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@
9090

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

stubs/resources/js/Pages/User/UserIndex.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@
110110

111111
<AppPaginator
112112
:links="users.links"
113+
:from="users.from || 0"
114+
:to="users.to || 0"
115+
:total="users.total || 0"
113116
class="mt-4 justify-center"
114117
></AppPaginator>
115118

0 commit comments

Comments
 (0)