Skip to content

Commit 2fc3b68

Browse files
authored
Merge pull request #283 from alaaelgndy/1.x
Configure the pagination to each resource
2 parents c276383 + fb10aec commit 2fc3b68

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

config/wink.php

+15
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,19 @@
9494
'default' => null,
9595

9696
],
97+
98+
/*
99+
|--------------------------------------------------------------------------
100+
| The pagination of wink collections
101+
|--------------------------------------------------------------------------
102+
|
103+
| You can configure here the number of items, per page.
104+
|
105+
*/
106+
'pagination' => [
107+
'posts' => 30,
108+
'tags' => 30,
109+
'teams' => 30,
110+
'pages' => 30,
111+
],
97112
];

src/Http/Controllers/PagesController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function index()
2020
$q->where('title', 'LIKE', '%'.request('search').'%');
2121
})
2222
->orderBy('created_at', 'DESC')
23-
->paginate(30);
23+
->paginate(config('wink.pagination.pages', 30));
2424

2525
return PagesResource::collection($entries);
2626
}

src/Http/Controllers/PostsController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function index()
3030
})
3131
->orderBy('created_at', 'DESC')
3232
->with('tags')
33-
->paginate(30);
33+
->paginate(config('wink.pagination.posts', 30));
3434

3535
return PostsResource::collection($entries);
3636
}

src/Http/Controllers/TagsController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function index()
2121
})
2222
->orderBy('created_at', 'DESC')
2323
->withCount('posts')
24-
->paginate(30);
24+
->paginate(config('wink.pagination.tags', 30));
2525

2626
return TagsResource::collection($entries);
2727
}

src/Http/Controllers/TeamController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function index()
2222
})
2323
->orderBy('created_at', 'DESC')
2424
->withCount('posts')
25-
->paginate(30);
25+
->paginate(config('wink.pagination.teams', 30));
2626

2727
return TeamResource::collection($entries);
2828
}

0 commit comments

Comments
 (0)