Haider Ghaleb
Table Builder to read from external API and apply custom pagination
I have recently implement external API to my model to read from my external API which worked perfectly, but I have an issue now in the pagination as the pagination is based on key of my response e.g.
{
'id': '123',
'total': 100
'entries': [
20 entries array
]
'links': [
'next': 'url for the next page',
'previous: 'url for the previous page'
}
I'm not able to customize the pagination to read from my external api.
As anyone faced this issue and was able to fix it. I'm using Filament v3
10 replies