You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
12
12
This is a stripped down version from the paid version [Maravel rest wizard](https://github.com/macropay-solutions/laravel-lumen-crud-wizard) (for laravel/lumen >= 8 and maravelith/maravel >= 10).
13
13
14
-
## Url query language lib for RESTful CRUD (micro) services using lumen/laravel 8-9-10-11-12 and Maravelith/Maravel >=10
14
+
## Url query language lib for RESTful CRUD (micro) services using Lumen/Laravel 8-9-10-11-12 and Maravelith/Maravel >=10
15
15
16
16
### This is not just another CRUD lib!
17
17
It has built in filtering capabilities that can be used for listing but also for mass deleting, so it could be called a CRU**F**D (create, read, update, **filter** and delete) lib instead.
\MacropaySolutions\LaravelCrudWizard\Providers\ValidationServiceProvider instead of Illuminate\Validation\ValidationServiceProvider::class if you are using **illuminate/validation < 11.44.1 to solve CVE-2025-27515 security issue and https://github.com/laravel/framework/issues/41734#issuecomment-3127680521 issue**
97
+
\MacropaySolutions\LaravelCrudWizard\Providers\ValidationServiceProvider instead of Illuminate\Validation\ValidationServiceProvider::class if you are using **illuminate/validation < 11.44.1 to solve CVE-2025-27515 security issue and https://github.com/laravel/framework/issues/41734#issuecomment-3127680521 issue** (fixed in Maravel/Maravelith, so it is not needed)
98
98
99
-
\MacropaySolutions\LaravelCrudWizard\Http\Middleware\UnescapedJsonMiddleware::class in lumen or laravel.
99
+
\MacropaySolutions\LaravelCrudWizard\Http\Middleware\UnescapedJsonMiddleware::class in Lumen/Laravel or Maravel/Maravelith.
100
100
101
101
Create a constant in your code
102
102
@@ -202,7 +202,7 @@ Optionally if you don't want to expose some models as resources but, you want to
202
202
203
203
Add this new resource to the above map.
204
204
205
-
Register the crud routes in your application using (for example in Laravel)
205
+
Register the crud routes in your application using (for example in Laravel/Maravelith)
206
206
207
207
```php
208
208
try {
@@ -226,7 +226,7 @@ Register the crud routes in your application using (for example in Laravel)
226
226
}
227
227
```
228
228
229
-
for example for lumen:
229
+
for example for Lumen/Maravel:
230
230
231
231
```php
232
232
@@ -519,7 +519,7 @@ Obs.
519
519
use ?cursor= for cursor pagination and ?simplePaginate=1 for simplePaginate. Use none of them for length aware paginator.
520
520
if \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class is used use ?cursor=1 instead of emtpy string
521
521
sort works also on aggregated colums for relation count and existence
522
-
withRelations which uses with function does not load morphable relations in laravel. BaseResourceService::addRelationsToExistingModel can be used for those or loadMorph.
522
+
withRelations which uses with function does not load morphable relations in laravel/Maravelith. BaseResourceService::addRelationsToExistingModel can be used for those or loadMorph.
0 commit comments