Skip to content

Releases: BinarCode/laravel-restify

9.9.0

22 Apr 14:31
91a688c

Choose a tag to compare

Added

  • Make sure to publishing on Laravel 12 exposes Restify provider.

9.8.0

04 Mar 06:57
d0a670c

Choose a tag to compare

Added

  • Support for Laravel 12

9.7.1

25 Feb 12:14
0271556

Choose a tag to compare

Fixed

  • fix(Search): Correctly search for strings with quotes and double quotes (#624)

9.7.0

17 Feb 07:50
ae006b5

Choose a tag to compare

Added

  • Add groupBy as a new feature in repositor #622

9.6.2

12 Jan 05:26

Choose a tag to compare

Fixed

  • Collect related when serialize for js

9.6.1

04 Dec 15:20
b15e3f6

Choose a tag to compare

Default Stored Value

During any (update or store requests), this is called after the fill and store callbacks.

You can pass a callable or a value, and it will be attached to the model if no value provided otherwise.

Imagine it's like attributes in the model:

field('currency')->defaultCallback('EUR')

9.5.1

02 Dec 18:09
a2f8aaa

Choose a tag to compare

Fixed

  • Missing Str class

9.5.0

01 Dec 12:46
cea3d19

Choose a tag to compare

Added

  • Support for string (full URL) for file() fields.

9.3.1

20 Aug 11:41
317b4e9

Choose a tag to compare

Fixed

  • fix(Bulk Update): Only Validate Data for Current Item in Loop #612

9.3.0

02 Jul 08:09
4efd863

Choose a tag to compare

Apply advanced filters via POST Request (Version 9.3.0+)

Starting from version 9.3.0, Laravel Restify introduces the ability to apply advanced filters using a POST request. This enhancement simplifies the process of sending complex filter payloads without the need for base64 encoding. Now, you can send the filters directly as JSON in the request body:

const filters = [
    {
        'key': 'ready-posts-filter',
        'value': null,
    }
];

const  response = await axios.post(`api/restify/posts/apply-restify-advanced-filters`, { filters });