PHPackages                             othnielkit/crud - 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. [Framework](/categories/framework)
4. /
5. othnielkit/crud

ActiveLibrary[Framework](/categories/framework)

othnielkit/crud
===============

Générateur CRUD complet pour Laravel

v1.0.0(3mo ago)17MITPHP

Since Apr 20Pushed 2mo agoCompare

[ Source](https://github.com/Walsoker/OthnielkitCrud)[ Packagist](https://packagist.org/packages/othnielkit/crud)[ RSS](/packages/othnielkit-crud/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependenciesVersions (2)Used By (0)

OthnielKit CRUD
===============

[](#othnielkit-crud)

Package Laravel permettant de générer automatiquement une structure CRUD complète rapidement et efficacement.

---

Présentation
============

[](#présentation)

OthnielKit CRUD aide les développeurs Laravel à gagner du temps en générant automatiquement les principaux fichiers nécessaires aux opérations CRUD.

Le package peut générer :

- Models
- Controllers
- Form Requests
- Migrations
- Views Blade
- Routes Resource

---

Installation
============

[](#installation)

Installez le package via Composer :

```
composer require othnielkit/crud
```

---

Publication de la configuration
===============================

[](#publication-de-la-configuration)

Publiez les fichiers de configuration du package :

```
php artisan vendor:publish --tag=othnielkit-config
```

---

Utilisation
===========

[](#utilisation)

Générez un CRUD complet avec la commande suivante :

```
php artisan othnielkit:crud Post
```

Cette commande génère automatiquement toute la structure CRUD pour l’entité `Post`.

---

Fichiers générés
================

[](#fichiers-générés)

Après exécution de la commande, le package génère des fichiers comme :

```
app/
├── Models/
│   └── Post.php
│
├── Http/
│   ├── Controllers/
│   │   └── PostController.php
│   │
│   └── Requests/
│       ├── StorePostRequest.php
│       └── UpdatePostRequest.php

database/
└── migrations/
    └── xxxx_xx_xx_create_posts_table.php

resources/
└── views/
    └── post/
        ├── index.blade.php
        ├── create.blade.php
        ├── edit.blade.php
        └── show.blade.php

```

---

Routes générées
===============

[](#routes-générées)

Le package génère automatiquement les routes resource :

```
Route::resource('posts', PostController::class);
```

Routes disponibles :

MéthodeURIActionGET/postsindexGET/posts/createcreatePOST/postsstoreGET/posts/{post}showGET/posts/{post}/editeditPUT/PATCH/posts/{post}updateDELETE/posts/{post}destroy---

Migration
=========

[](#migration)

Après génération du CRUD, exécutez les migrations :

```
php artisan migrate
```

---

Exemple
=======

[](#exemple)

Créer un CRUD pour `Product` :

```
php artisan othnielkit:crud Product
```

Accéder ensuite aux pages générées :

```
/products
/products/create

```

---

Exemple de structure des vues
=============================

[](#exemple-de-structure-des-vues)

```
resources/views/product/
├── index.blade.php
├── create.blade.php
├── edit.blade.php
└── show.blade.php

```

---

Prérequis
=========

[](#prérequis)

TechnologieVersionPHP&gt;= 8.1Laravel&gt;= 10---

Exemple d’installation complète
===============================

[](#exemple-dinstallation-complète)

```
composer require othnielkit/crud

php artisan vendor:publish --tag=othnielkit-config

php artisan othnielkit:crud Product

php artisan migrate
```

---

Pourquoi utiliser OthnielKit CRUD ?
===================================

[](#pourquoi-utiliser-othnielkit-crud-)

- Gain de temps
- Structure propre
- Réduction du code répétitif
- Facile à utiliser
- Intégration rapide avec Laravel

---

Liens du package
================

[](#liens-du-package)

- Packagist :
- GitHub :

---

Auteur
======

[](#auteur)

Créé par **Othiniel Koman**

---

Licence
=======

[](#licence)

Ce package est un logiciel open-source sous licence MIT.

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance84

Actively maintained with recent releases

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

95d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/156544486?v=4)[Othniel](/maintainers/Walsoker)[@Walsoker](https://github.com/Walsoker)

---

Top Contributors

[![Walsoker](https://avatars.githubusercontent.com/u/156544486?v=4)](https://github.com/Walsoker "Walsoker (2 commits)")

### Embed Badge

![Health badge](/badges/othnielkit-crud/health.svg)

```
[![Health](https://phpackages.com/badges/othnielkit-crud/health.svg)](https://phpackages.com/packages/othnielkit-crud)
```

###  Alternatives

[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[alizharb/laravel-modular

A professional, framework-agnostic modular architecture for Laravel 11+. Features zero-config autoloading, 29+ Artisan command overrides, and seamless Vite integration.

211.6k9](/packages/alizharb-laravel-modular)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

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