PHPackages                             supaapps/supaapps-laravel-api-kit - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. supaapps/supaapps-laravel-api-kit

ActiveLibrary

supaapps/supaapps-laravel-api-kit
=================================

Boilerplate &amp; Helpers for Supaapps Laravel projects

v0.6.0(1y ago)02.0k↓100%MITPHPPHP ^8.1 || ^8.3 || ^8.4CI failing

Since Aug 12Pushed 1y ago1 watchersCompare

[ Source](https://github.com/supaapps/supaapps-laravel-api-kit)[ Packagist](https://packagist.org/packages/supaapps/supaapps-laravel-api-kit)[ RSS](/packages/supaapps-supaapps-laravel-api-kit/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (9)Versions (46)Used By (0)

Supaapps Laravel API Kit
=========================

[](#supaapps-laravel-api-kit-)

Boilerplate and helpers for Supaapps Laravel projects

Table of content
-----------------

[](#table-of-content-)

- [Installation](#installation)
- [Usage](#usage)
    - [Generate CRUD controller](#generate-crud-controller)
    - [CRUD](#crud)
    - [Available CRUD properties](#available-crud-properties)
    - [Properties used by `CrudIndexTrait`](#properties-used-by-crudindextrait)
    - [Properties used by `UpdateIndexTrait`](#properties-used-by-updateindextrait)
    - [Properties used by `DeleteIndexTrait`](#properties-used-by-deleteindextrait)
- [CRUD Controller Override](#crud-controller-override)
    - [Override methods in `CrudIndexTrait`](#override-methods-in-crudindextrait)
- [User signature](#user-signature)
- [Tests](#tests)
- [Linting](#linting)
- [Useful links](#useful-links)

Installation
------------

[](#installation)

```
composer require supaapps/supaapps-laravel-api-kit
```

Usage
-----

[](#usage)

### Generate CRUD controller

[](#generate-crud-controller)

To create crud controller, run the following command:

```
php artisan make:crud-controller
```

### CRUD

[](#crud)

To get advantage of CRUD boilerplate controller, extend `BaseCrudController` in your controller. **Example**:

```
use Supaapps\LaravelApiKit\Controllers\BaseCrudController;

class ExampleController extends BaseCrudController
{
    public string $model = \App\Models\Example::class; // replace with your model
}
```

### Available CRUD properties

[](#available-crud-properties)

There are multiple properties you can use within your CRUD controller:

- The model for CRUD operations. (**required**)

```
public string $model = \App\Models\Example::class; // replace with your model
```

### Properties used by `CrudIndexTrait`

[](#properties-used-by-crudindextrait)

- Paginate the response from index response or not.

```
public bool $shouldPaginate = false;
```

- Perform searches on single column using the `search` parameter from the request. *If you want to search multiple columns use `$searchSimilarFields`, see next property.*

```
public ?string $searchField = null; // replace with desired column
```

> #### All of the upcoming properties should be array. If you want to add some logic head to [CRUD controller override](#crud-controller-override)
>
> [](#all-of-the-upcoming-properties-should-be-array-if-you-want-to-add-some-logic-head-to-crud-controller-override-)

- Perform a lookup for similar results in the specified columns using the **`LIKE` operator** with the `search` parameter from the request.

```
public array $searchSimilarFields = [];
```

In following example, it lockups for `%supa%` in either `name` or `description`

```
// user hit endpoint > /example?search=supa

public array $searchSimilarFields = [
    'name',
    'description',
];
```

- Perform a lookup for exact results in the specified columns using the **`=` operator** with the `search` parameter from the request.

```
public array $searchExactFields = [];
```

In following example, it lockups for `1` in `id`, `price` or `category_id`

```
// user hit endpoint > /example?search=1

public array $searchExactFields = [
    'id',
    'price',
    'category_id',
];
```

- Perform a lookup for results in the specified columns wrapping the `search` parameter from the request with `DATE()` mysql function.

```
public array $searchDateFields = [];
```

In following example, it lockups for `2023-09-26` in `completed_at`, `created_at` or `updated_at`

```
// user hit endpoint > /example?search=2023-09-26

public array $searchDateFields = [
    'completed_at',
    'created_at',
    'updated_at',
];
```

- Filter columns by exact given values. Ensure that the columns entered are in plural form.

```
public array $filters = [];
```

In the following example, it will apply the query `WHERE id IN (1, 2) AND code IN ('ABC')`

```
// user hit endpoint > /example?ids[]=1&ids[]=2&codes[]=ABC

public array $filters = [
    'ids',
    'codes',
];
```

- Filter date columns by min and max values

```
public array $dateFilters = [];
```

In the following example, it will search the records that have `created_at` larger than `create_at_min` and less than `created_at_max` and `updated_at` larger than `updated_at_min`

```
// user hit endpoint > /example?created_at_min=2023-09-01&created_at_max=2023-09-30&updated_at_min=2023-09-15

public array $dateFilters = [
    'created_at',
    'updated_at',
];
```

- Filter columns that are `NULL` or `NOT NULL`

```
public ?array $isEmptyFilters = [];
```

In the following example, user wants to get the completed and not cancelled rewards. These rewards have `completed_at IS NOT NULL` and `cancelled_at IS NULL`

```
// user hit endpoint > /example?is_empty[completed_at]=false&is_empty[cancelled_at]=true

public ?array $isEmptyFilters = [
    'completed_at',
    'cancelled_at',
];
```

- Define default order by column

```
public ?array $defaultOrderByColumns = null;
```

In the following example, there are 2 order by rules are defined in the controller. The results will be ordered by `created_at` descending and by `id` ascending.

```
public ?array $defaultOrderByColumns = [
    'created_at,desc',
    'id,asc'
];
```

But if the request has `sort` query parameter, then it will override the `defaultOrderByColumns`. **Example**:

```
/sort?sort[id]=desc&sort[name]=asc
```

This will sort the results first by `id` descending then by `name` ascending

### Properties used by `UpdateIndexTrait`

[](#properties-used-by-updateindextrait)

- Disable updates on the model.

```
public bool $readOnly = false;
```

### Properties used by `DeleteIndexTrait`

[](#properties-used-by-deleteindextrait)

- Enable deletion for the model.

```
public bool $isDeletable = false;
```

---

CRUD Controller Override
------------------------

[](#crud-controller-override)

If you want to add more logic to properties, you can override properties in your controller using getters. For example: you want to return different `$searchExactFields` depending on a condition:

```
private function getSearchExactFields(): array
{
    if (request('user_type') == 'admin') {
        return [
            'admin_id'
        ];
    }

    return [
        'user_id'
    ];
}
```

### Override methods in `CrudIndexTrait`

[](#override-methods-in-crudindextrait)

- Override `$searchSimilarFields`

```
private function getSearchSimilarFields(): array;
```

- Override `$searchExactFields`

```
private function getSearchExactFields(): array;
```

- Override `$searchDateFields`

```
private function getSearchDateFields(): array;
```

- Override `$filters`

```
private function getFilters(): array;
```

- Override `$dateFilters`

```
private function getDateFilters(): array;
```

- Override `$isEmptyFilters`

```
private function getIsEmptyFilters(): array;
```

- Get allowed list that can be ordered by

```
// by default, it merges the values from:
//    $this->getSearchSimilarFields(),
//    $this->getSearchExactFields(),
//    $this->getSearchDateFields()
private function getOrderByColumns(): array;
```

- Override `$defaultOrderByColumns`

```
private function getDefaultOrderByColumns(): ?array;
```

---

User signature
--------------

[](#user-signature)

You can keep track of `created` and `updated` user of your model in 3 steps:

1. Include required columns to your model `schema`

```
Schema::table('articles', function (Blueprint $table) {
    $table->auditIds();
});
```

Where `auditIds` accepts 2 parameters

- `table`: the related table name, default: `users`
- `column`: the related column name on related table, default `id`

2. Include custom columns to your model `$fillable` property

```
protected $fillable = [
    'created_by_id',
    'updated_by_id',
    ...
]
```

3. Add observer to your model

```
// in src/Providers/EventServiceProvider.php add the following line

protected $observers = [
    \App\Models\Article::class => [ // replace Article with your model
        \Supaapps\LaravelApiKit\Observers\UserSignatureObserver::class,
    ],
    ...
];
```

---

Tests
-----

[](#tests)

```
composer test
```

Linting
-------

[](#linting)

```
composer lint
```

Useful links
------------

[](#useful-links)

-
-
-

###  Health Score

39

—

LowBetter than 85% of packages

Maintenance50

Moderate activity, may be stable

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 53.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~25 days

Recently: every ~113 days

Total

26

Last Release

382d ago

PHP version history (3 changes)v0.1.0-alpha.01PHP ^8.1

v0.3.0PHP ^8.1 || ^8.3

v0.6.0PHP ^8.1 || ^8.3 || ^8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/cf0802445d899f6532769c8a690f89d90d119886a96d627b01b1994c82eba8eb?d=identicon)[SirNarsh](/maintainers/SirNarsh)

---

Top Contributors

[![amrography](https://avatars.githubusercontent.com/u/9614340?v=4)](https://github.com/amrography "amrography (76 commits)")[![SirNarsh](https://avatars.githubusercontent.com/u/13707877?v=4)](https://github.com/SirNarsh "SirNarsh (66 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/supaapps-supaapps-laravel-api-kit/health.svg)

```
[![Health](https://phpackages.com/badges/supaapps-supaapps-laravel-api-kit/health.svg)](https://phpackages.com/packages/supaapps-supaapps-laravel-api-kit)
```

###  Alternatives

[larastan/larastan

Larastan - Discover bugs in your code without running it. A phpstan/phpstan extension for Laravel

6.4k43.5M5.2k](/packages/larastan-larastan)[laravel/passport

Laravel Passport provides OAuth2 server support to Laravel.

3.4k85.0M529](/packages/laravel-passport)[genealabs/laravel-model-caching

Automatic caching for Eloquent models.

2.4k4.8M26](/packages/genealabs-laravel-model-caching)[mikebronner/laravel-model-caching

Automatic caching for Eloquent models.

2.4k127.1k1](/packages/mikebronner-laravel-model-caching)[yadahan/laravel-authentication-log

Laravel Authentication Log provides authentication logger and notification for Laravel.

416632.8k5](/packages/yadahan-laravel-authentication-log)[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
