laravel icon indicating copy to clipboard operation
laravel copied to clipboard

JSON:API for Laravel applications

Results 83 laravel issues
Sort by recently updated
recently updated
newest added

I followed the doc by creating a proxy, link this proxy to the policy and I have an issue with my policy's delete function parameter type : Argument #2 ($item)...

Hej, I tried to change the uri type of my schemas from being dasherized to use camel case. So far no big deal. But I noticed that this change is...

_Apologies if there is a better way to submit such open-ended questions. In this case, please let me know or simply close the issue._ # What I want to do...

Exception handling is mentioned in the installation portion of the tutorial-app https://laraveljsonapi.io/docs/3.0/getting-started/#exception-handler In Laravel 11.x that default Handler is removed, and instead `bootstrap/app.php` is supposed to be used as in...

documentation

Laravel has add "where any" and "where all" clauses. Would be great to add these as new filters. https://laravel.com/docs/11.x/queries#where-any-all-clauses This might be good for a first issue if someone is...

good first issue

The tutorial docs are for v3.0 with laravel 10.x https://laraveljsonapi.io/docs/1.0/tutorial/ Can't find documentation on proper set up for a Laravel 11.x app with v4.0

documentation

The use case is, I've a `Round` that has many `TextOverrides` and belongs to many `DefaultTexts`. Within the `RoundSchema` I've added the following field: ```php MorphToMany::make('texts', [ BelongsToMany::make('defaultTexts'), HasMany::make('textOverrides'), ])->readOnly(),...

I'm trying to filter the resources included on my request. To give an example : I have two models, a User and Posts. `/api/v1/users/123?include=posts&filter[posts][approved]=true` The above query would filter the...

I have the following Schema: ```php class UpsellSchema extends Schema { /** * The model the schema corresponds to. * * @var string */ public static string $model = Upsell::class;...

Hi, Due to the naming of one of our resources the variable name became too long. (more then 32 characters) Simplest solution was to short the variable name by using...