PHPackages                             taksu-tech/laravel-restful - 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. [API Development](/categories/api)
4. /
5. taksu-tech/laravel-restful

ActiveLibrary[API Development](/categories/api)

taksu-tech/laravel-restful
==========================

Restful extension for Laravel by Taksu Tech

v1.1.9(9mo ago)014.7k↑52%3[2 PRs](https://github.com/madeadi/laravel-restful/pulls)MITPHP

Since Aug 22Pushed 9mo ago1 watchersCompare

[ Source](https://github.com/madeadi/laravel-restful)[ Packagist](https://packagist.org/packages/taksu-tech/laravel-restful)[ RSS](/packages/taksu-tech-laravel-restful/feed)WikiDiscussions main Synced 3d ago

READMEChangelogDependencies (1)Versions (13)Used By (0)

Laravel Restful
===============

[](#laravel-restful)

To use
======

[](#to-use)

Create a controller class and extends it from `CrudController`.

Example:

use `CommonModelTrait` on the model.

```
class Admin extends Model
{
    use ModelCommonTrait;
    ...
}
```

```
namespace App\Http\Controllers;

use App\Models\Admin;
use Taksu\Restful\Controllers\CrudController;

class AdminController extends CrudController
{
    public function __construct()
    {
        parent::__construct(Admin::class);
    }
}
```

Add in the `routes\api.php`

```
Route::apiResource('admins', AdminController::class);

```

Finally, query the API

```
GET localhost:8000/api/admins

```

To install the console commands, in `AppServiceProvider`, add the following:

```
public function boot()
{
    if ($this->app->runningInConsole()) {
        $this->commands([
            Taksu\Console\Commands\MakeCrudController::class,
        ]);
    }
}

```

###  Health Score

42

—

FairBetter than 88% of packages

Maintenance56

Moderate activity, may be stable

Popularity28

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 72.2% 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 ~148 days

Recently: every ~98 days

Total

11

Last Release

293d ago

### Community

Maintainers

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

---

Top Contributors

[![madeadi](https://avatars.githubusercontent.com/u/478268?v=4)](https://github.com/madeadi "madeadi (13 commits)")[![aldhipradana21](https://avatars.githubusercontent.com/u/112693349?v=4)](https://github.com/aldhipradana21 "aldhipradana21 (2 commits)")[![h3llmy](https://avatars.githubusercontent.com/u/106095942?v=4)](https://github.com/h3llmy "h3llmy (2 commits)")[![huedaya](https://avatars.githubusercontent.com/u/4969689?v=4)](https://github.com/huedaya "huedaya (1 commits)")

### Embed Badge

![Health badge](/badges/taksu-tech-laravel-restful/health.svg)

```
[![Health](https://phpackages.com/badges/taksu-tech-laravel-restful/health.svg)](https://phpackages.com/packages/taksu-tech-laravel-restful)
```

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.6M993](/packages/statamic-cms)[darkaonline/l5-swagger

OpenApi or Swagger integration to Laravel

3.0k37.6M133](/packages/darkaonline-l5-swagger)[knuckleswtf/scribe

Generate API documentation for humans from your Laravel codebase.✍

2.3k14.2M63](/packages/knuckleswtf-scribe)[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135224.7k7](/packages/statamic-rad-pack-runway)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

783.8k](/packages/scriptdevelop-whatsapp-manager)[duncanmcclean/statamic-cargo

Comprehensive e-commerce addon for Statamic. Build bespoke e-commerce sites without the complexity.

3417.0k](/packages/duncanmcclean-statamic-cargo)

PHPackages © 2026

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