PHPackages                             intagono/scaffolding - 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. intagono/scaffolding

ActiveLibrary

intagono/scaffolding
====================

Scaffold Generator - Laravel 5.2 &amp; Metronic Template

52394PHP

Since Mar 19Pushed 10y ago2 watchersCompare

[ Source](https://github.com/intagono/scaffolding)[ Packagist](https://packagist.org/packages/intagono/scaffolding)[ RSS](/packages/intagono-scaffolding/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Scaffolding - Laravel 5.2 &amp; Metronic Admin Template
-------------------------------------------------------

[](#scaffolding---laravel-52--metronic-admin-template)

Library that simplifies creating CRUD, with which we will create Controllers, Models, Views, Migrations, Seeds &amp; Routes in seconds.

Instalación
-----------

[](#instalación)

To install the package you need to add dependency on our composer.json at the root of laravel.

```
{
    "require": {
        "raalveco/scaffolding": "dev-master"
    }
}
```

```
    composer update
```

Laravel 5.2
-----------

[](#laravel-52)

In the $providers array add the following service provider for this package.

```
// config/app.php

'providers' => [
    Intagono\Scaffolding\ScaffoldingServiceProvider::class,
];
```

Usage
-----

[](#usage)

If you want to create a simple catalog for an entity, you must enter the console the following command:

```
    php artisan make:scaffold Category --fields="name:string:100[required|alpha]"
```

```
    php artisan make:scaffold Customer --fields="rfc:string:13[required|maxlength:13|minlength:12], first_name:string:100[required|alpha], last_name:string:100[required|alpha], email:string:100[required|email]"
```

This will create the bass for a Customer model structure, will be created the following files:

```
    Controller:
        app/Http/CustomersController.php
    Model:
        app/Models/Customer.php
    Migration:
        database/migrations/0000_00_00_000000_create_customers_table.php
    Seed:
        database/seeds/CustomersSeeder.php
    Lang:
        resources/lang/en/customers.php
        resources/lang/es/customers.php
    Views:
        resources/views/customers/index.blade.php
        resources/views/customers/new.blade.php
        resources/views/customers/edit.blade.php
    Routes:
        app/Http/routes.php (Edited)
```

After running the command: make:scaffold, we should run a migrate and if necessary run the seeder that just generated.

```
    php artisan migrate
```

```
    php artisan db:seed --class=CustomersSeeder
```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 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.

### Community

Maintainers

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

---

Top Contributors

[![raalveco](https://avatars.githubusercontent.com/u/852016?v=4)](https://github.com/raalveco "raalveco (11 commits)")

### Embed Badge

![Health badge](/badges/intagono-scaffolding/health.svg)

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

PHPackages © 2026

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