Skip to content

Releases: fourstacks/flexible-presenter

Support Laravel 13

Choose a tag to compare

@fourstacks fourstacks released this 19 Mar 13:13

Adds support for L13 following automatic shift

Support Laravel 12

Choose a tag to compare

@fourstacks fourstacks released this 14 Mar 22:14
1141fc3

Adds support for Laravel 12 following automatic Shift

Support Laravel 11

Choose a tag to compare

@fourstacks fourstacks released this 26 Apr 08:50

This version adds support for Laravel 11 and drops support for Laravel 9 (please use v4.x if you need Laravel 9 support)

Support Laravel 10

Choose a tag to compare

@fourstacks fourstacks released this 27 Feb 12:13

This PR adds support for Laravel 10 and drops support for Laravel 8 (if you need to use this package on Laravel 8 then please use v3.x of this package)

Adds Laravel 9 support

Choose a tag to compare

@fourstacks fourstacks released this 11 Feb 09:53

This release updates the package to add Laravel 9 support. From this version onwards the package no longer support Laravel 6 and 7 and PHP versions lower than PHP 8.

Thanks to @pgtruesdell for the L9 PR!

Adds ability to chain 'with' method

Choose a tag to compare

@fourstacks fourstacks released this 14 Oct 10:45
a0a6d44

You can now chain with method calls on the same presenter instance. Useful if you need to build up a presenter in stages.

Thanks to @ycs77 for the work on #29

Add appends method and remove lazy method

Choose a tag to compare

@fourstacks fourstacks released this 03 May 19:05

Add appends method to allow for adding additional key value pairs to the outer wrapper of a paginated collection.

Removes lazy method (turns out it wasn't that lazy). Those using PHP 7.4 can use a short closure instead.

Adds pagination support

Choose a tag to compare

@fourstacks fourstacks released this 19 Apr 20:56

The collection method can now accept a paginator instance. Instances of both Paginator and LengthAwarePaginator are supported as well as custom paginators that extend AbstractPaginator and implement Arrayable.

Big thanks to @ycs77 for the PR for this feature