PHPackages                             rubzat/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. [Utility &amp; Helpers](/categories/utility)
4. /
5. rubzat/scaffolding

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

rubzat/scaffolding
==================

Scaffold Generator - Laravel 5.4 &amp; Metronic Template 4.7

040PHP

Since Oct 7Pushed 8y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

Scaffolding - Laravel 5.4 &amp; Metronic Admin Template 4.7
-----------------------------------------------------------

[](#scaffolding---laravel-54--metronic-admin-template-47)

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": {
        "rubzat/scaffolding": "dev-master"
    }
}
```

```
    composer update
```

Laravel 5.4
-----------

[](#laravel-54)

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

```
// config/app.php

'providers' => [
    Rubzat\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:
        routes/web.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

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

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/2d8889261fbdb7a901a65b5b04d384fa0dff20b5d65dee551f21af20f6f9b203?d=identicon)[rubzat](/maintainers/rubzat)

---

Top Contributors

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

### Embed Badge

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

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

###  Alternatives

[spatie/unit-conversions

Perform unit conversions in PHP

363.5k](/packages/spatie-unit-conversions)[devaly/wordpress-routes

Manage rewrites and routes in WordPress with this dead-simple plugin

101.2k](/packages/devaly-wordpress-routes)

PHPackages © 2026

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