experteam / api-laravel-crud
Library to help with Laravel api CRUDs definition
3.6.0
2025-11-18 18:36 UTC
Requires
- php: ^8.1 || ^8.2 || ^8.3
- ext-json: *
- experteam/api-laravel-base: ^2.0
- laravel/framework: ^9.0 || ^10.0 || ^11.0 || ^12.0
This package is auto-updated.
Last update: 2026-06-18 19:59:14 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;