experteam / api-laravel-crud
Library to help with Laravel api CRUDs definition
Installs: 9 339
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/experteam/api-laravel-crud
Requires
- php: ^8.1 || ^8.2
- ext-json: *
- experteam/api-laravel-base: ^2.0
- laravel/framework: ^9.0 || ^10.0 || ^11.0
- dev-master
- 3.5.0
- 3.4.1
- 3.4.0
- 3.3.0
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.1
- 3.0.0
- v2.x-dev
- 2.5.2
- 2.5.1
- 2.5.0
- 2.4.0
- 2.3.1
- 2.3.0
- 2.2.0
- v2.1.1
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- v2.0.0
- 1.6.6
- 1.6.5
- 1.6.4
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.0
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2
- 1.1
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2025-10-08 20:29:29 UTC
README
Base service providers to manage crud services
It includes:
- Model paginate: Trait to manage pagination, it can manage limit, offset and order by.
Install
Run the following commands to install:
composer require experteam/api-laravel-crud
php artisan vendor:publish --tag=lang
Update
Run the composer command to update the package:
composer update experteam/api-laravel-crud
Use advanced Queries with mongoDB
To use advanced queries on mongoDB you need to add a public property to your model to identify it as a MongoDB collection
public bool $isMongoDB = true;