fix pagination page for kehadiran

This commit is contained in:
nurafrinaalimi16
2024-04-21 16:52:08 +08:00
parent f26154de88
commit 87d954cddb
2 changed files with 38 additions and 13 deletions
@@ -11,6 +11,6 @@ class GetController extends Controller
{
public function __invoke()
{
return Voter::where('election_id', Util::getCurrentElection())->paginate(10);
return Voter::where('election_id', Util::getCurrentElection())->paginate(50);
}
}