codelytv / criteria-from-laravel-request-to-eloquent
There is no license information available for the latest version (0.1.3) of this package.
0.1.3
2024-08-06 13:56 UTC
Requires
- php: ^8.2
- codelytv/criteria-from-laravel-request: ^0.1.3
- codelytv/criteria-to-eloquent: ^0.1.3
- illuminate/http: ^v11
Requires (Dev)
- codelytv/coding-style: ^1.3
README
🎼 Criteria from Laravel Request to Eloquent
🔒 Read-only repository
Any modification must be done in the main repository.
📥 Installation
composer require codelytv/criteria-from-laravel-request-to-eloquent
💻 Usage
The criteria converter expect an url with the following format.
Route::get('users', function (Request $request) { return CriteriaFromLaravelRequestToEloquentConverter::convert(User::query(), $request)->get(); });