ghonijee/query-adapter

Query builder for Laravel model, specifically for DevExtream Table

v1.0.9 2022-09-19 06:00 UTC

This package is auto-updated.

Last update: 2024-04-19 09:09:11 UTC


README

Latest Version on Packagist Total Downloads Actions Status

Documentation

Full Documentation QueryAdapter Docs. This site documentation is under development.

Installation

You can install the package via composer:

composer require ghonijee/query-adapter

Usage

// Use Facade
$data = QueryAdapter::for(TestModel::class)->get();
// or
$data = QueryAdapter::load(TestModel::query())->get();


//or Use Class DxAdapter
$data = DxAdapter::for(TestModel::class)->get();
// or
$data = DxAdapter::load(TestModel::query())->get();

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email akughoni@gmail.id instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.