Glenn Jacobs

Results 217 comments of Glenn Jacobs
trafficstars

@lysender oh! I was getting confused, I thought you meant the latest dev version of the package. Thanks :)

I've just come across this too. This repo seems to be abandoned. Is anyone maintaining a better fork?

Now that Laravel 4.3 has been renamed Laravel 5 it can no longer be installed via composer. Can the composer.json be updated to something like ``` "require": { "php": ">=5.4.0",...

Something to consider @GrahamCampbell is that DigitalOcean are creating an OpenAPI spec for their API. This will make generating a PHP client a breeze (if it actually happens). See https://github.com/digitalocean/api-v2/issues/190...

This does raise the question as to whether we should have "all" as a default option. Some tables will have thousands of records and so "all" is likely to be...

> There's an open Filament issue re: large table performance: https://github.com/filamentphp/filament/issues/9304. The consensus there was 100 max as well. > > > > @glennjacobs I remember you saying something about...

I'm not keen on the config approach initially. Having looked at Filament there doesn't appear to be a way to set the options globally. I do wonder if Filament would...

> You mean [setting global pagination settings like this](https://filamentphp.com/docs/3.x/tables/advanced#global-settings)? Ahha! I was searching for that and couldn't find it... that's exactly it. So we could look to use that in...

I would put the following in the Lunar service provider ```php Table::configureUsing(function (Table $table): void { $table ->paginationPageOptions([20, 50, 100]) >defaultPaginationPageOption(20); }); ``` and then test that a developer can...