Releases

9.8.0 3/4/2025

Added

  • Support for Laravel 12

9.7.1 2/25/2025

Fixed

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

9.7.0 2/17/2025

Added

9.6.2 1/12/2025

Fixed

  • Collect related when serialize for js

9.6.1 12/4/2024

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 12/2/2024

Fixed

  • Missing Str class

9.5.0 12/1/2024

Added

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

9.3.1 8/20/2024

Fixed

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

9.3.0 7/2/2024

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 });

9.2.0 7/1/2024

Added

Handling Additional Payload Data in Advanced Filters

In some scenarios, you might want to send additional data beyond the standard key and value in your filter payload. For instance, you may need to specify an operator or a column to apply more complex filtering logic. Laravel Restify Advanced Filters provide a way to handle these additional payload fields using the $this->rest() method.

Example Payload

Consider the following payload:

const filters = btoa(JSON.stringify([
    {
        'key': ValueFilter::uriKey(),
        'value': 'Valid%',
        'operator' => 'like',
        'column' => 'description',
    }
]));

const response = await axios.get(`api/restify/posts?filters=${filters}`);

In this payload, besides the standard key and value, we are also sending operator and column. The operator specifies the type of SQL operation, and the column specifies the database column to filter.

Using $this->rest() to Access Additional Data

To handle these additional fields in your filter class, you need to ensure they are accessible via the $this->rest() method. Here is how you can achieve that:

class ValueFilter extends AdvancedFilter
{
    public function filter(RestifyRequest $request, Builder|Relation $query, $value)
    {
        $operator = $this->rest('operator');
        $column = $this->rest('column');

        $query->where($column, $operator, $value);
    }

    public function rules(Request $request): array
    {
        return [];
    }
}

9.1.0 6/5/2024

Added

  • Ability to cache single policy #605

Restify allows individual caching at the policy level with specific configurations. To enable this, a contract Cacheable must be implemented at the policy level, which enforces the use of the cache() method.

class PostPolicy implements Cacheable
{
    public function cache(): ?CarbonInterface
    {
        return now()->addMinutes();
    }

The cache method is expected to return a CarbonInterface or null. If null is returned, the current policy will NOT cached.

9.0.0 4/1/2024

Added

  • Add support for Laravel 11 (#602)

8.4.0 4/1/2024

Added

  • Add support for Laravel 11 (#602)

8.3.2 12/30/2023

Fixed

  • Restifyjs setup without auth middleware

8.3.1 12/30/2023

8.3.0 11/22/2023

Added

  • Support searching string with single quotes in them #592

8.2.0 9/7/2023

Added

  • Added natural sort filter #586

Fixed

  • fix: rules method overrides already defined rules #575
  • Cleanup faker from cmd construct #580

8.1.5 9/7/2023

Fixed

  • Fixed accept string in filters #585

8.1.3 9/7/2023

Fixed

  • Fixed type for resolver #584

8.1.2 9/7/2023

Fixed

  • sortable filter update #583

8.1.1 6/16/2023

Fixed

  • change the route name

8.0.1 4/14/2023

Fixed

  • docs for getters #554

8.0.0 4/6/2023

Added

  • Support for Laravel 10 #540
  • Introduces a new option to publish specific auth actions #551
  • Take actionable fields into account when calling patch method #547
  • Custom namespaces support #549
  • New artisan restify:routes comment
  • Updated the documentation https://restify.binarcode.com/
  • 💯 - 💯 - 💯 - 💯

Improved

  • Larastan specs

7.11.0 3/16/2023

Added

  • Support for actionable fields on PATCH method #547

thanks @dsindrilaru

7.10.11 2/12/2023

Added

  • Now you can use the permission name for the field see authorization:
field('user_id')->canSeeWhen('can manage users'),

7.10.4 2/11/2023

Fixed

  • Do not display hidden pivots.

7.10.3 2/11/2023

Fixed

  • fix: do not filter belongs to many fields

7.10.2 2/4/2023

Fixed

7.10.1 2/4/2023

Fixed

  • Show the full path for the file when suggesting OpenAI solution.