PHPackages                             alnutile/l5scaffold - 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. alnutile/l5scaffold

ActiveLibrary

alnutile/l5scaffold
===================

Extend Laravel 5's generators scaffold. Thanks to the base of this laralib by fernandobritofl@gmail.com!

1.0.3(10y ago)18767[8 issues](https://github.com/alnutile/l5scaffold/issues)MITPHPPHP &gt;=5.4.0

Since Apr 23Pushed 10y ago5 watchersCompare

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

READMEChangelog (1)Dependencies (1)Versions (8)Used By (0)

Laravel 5 Scaffold Generator
============================

[](#laravel-5-scaffold-generator)

See Tag 1.0.3 for Laravel 5.1

This is a scaffold generator for Laravel 5.2

Usage
-----

[](#usage)

### Step 1: Install Through Composer

[](#step-1-install-through-composer)

Setup your composer.json

```
  "require": {
    "php": ">=5.5.9",
    "laravel/framework": "5.1.*"
  },
  "repositories": [
    {
      "type": "vcs",
      "url": "https://github.com/alnutile/l5scaffold.git"
    }
  ],

```

You might have to set

```
"minimum-stability": "dev"
```

At the bottom of your composer.json

then

```
composer require "laralib/l5scaffold":"dev-master"

```

### Step 2: Add the Service Provider

[](#step-2-add-the-service-provider)

Since we only want this on dev go to `app/Providers/AppServiceProvider.php`

```
    public function register()
    {

        if ($this->app->environment() == 'local') {
            $this->app->register('Laralib\L5scaffold\GeneratorsServiceProvider');
        }
    }
}

```

### Step 3: Run Artisan!

[](#step-3-run-artisan)

You're all set. Run `php artisan` from the console, and you'll see the new commands `make:scaffold`.

Examples
--------

[](#examples)

```
php artisan make:scaffold Tweet --schema="title:string:default('Tweet #1'), body:text"

```

This command will generate:

```
app/Tweet.php
app/Http/Controllers/TweetController.php
database/migrations/2015_04_23_234422_create_tweets_table.php
database/seeds/TweetTableSeeder.php
resources/views/layout.blade.php
resources/views/tweets/index.blade.php
resources/views/tweets/show.blade.php
resources/views/tweets/edit.blade.php
resources/views/tweets/create.blade.php

```

And don't forget to run:

```
php artisan migrate

```

Scaffold
--------

[](#scaffold)

[![image](https://camo.githubusercontent.com/618a183795bc50d13359a0dea735fa6ab562fddd9d87e83876cdb81dceb3efdc/687474703a2f2f6936322e74696e797069632e636f6d2f31316d617665622e706e67)](https://camo.githubusercontent.com/618a183795bc50d13359a0dea735fa6ab562fddd9d87e83876cdb81dceb3efdc/687474703a2f2f6936322e74696e797069632e636f6d2f31316d617665622e706e67)[![image](https://camo.githubusercontent.com/e7da9215017564922f1f446ce9d678f24652468869982f0dd4fa3698448f8e70/687474703a2f2f6935382e74696e797069632e636f6d2f6571636861742e706e67)](https://camo.githubusercontent.com/e7da9215017564922f1f446ce9d678f24652468869982f0dd4fa3698448f8e70/687474703a2f2f6935382e74696e797069632e636f6d2f6571636861742e706e67)[![image](https://camo.githubusercontent.com/12e243ba07d1cfeb2e9d7faee709509f693c566ce83e0fc31c97a6183fffc3ae/687474703a2f2f6936322e74696e797069632e636f6d2f323068376b386e2e706e67)](https://camo.githubusercontent.com/12e243ba07d1cfeb2e9d7faee709509f693c566ce83e0fc31c97a6183fffc3ae/687474703a2f2f6936322e74696e797069632e636f6d2f323068376b386e2e706e67)

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance11

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 53.3% 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 ~90 days

Total

4

Last Release

3763d ago

### Community

Maintainers

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

---

Top Contributors

[![alnutile](https://avatars.githubusercontent.com/u/365385?v=4)](https://github.com/alnutile "alnutile (16 commits)")[![fernandobritofl](https://avatars.githubusercontent.com/u/699879?v=4)](https://github.com/fernandobritofl "fernandobritofl (12 commits)")[![itsazzad](https://avatars.githubusercontent.com/u/54909?v=4)](https://github.com/itsazzad "itsazzad (1 commits)")[![webbtj](https://avatars.githubusercontent.com/u/865814?v=4)](https://github.com/webbtj "webbtj (1 commits)")

---

Tags

laravelscaffoldlaravel5generators

### Embed Badge

![Health badge](/badges/alnutile-l5scaffold/health.svg)

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

###  Alternatives

[laralib/l5scaffold

Extend Laravel 5's generators scaffold.

31474.1k](/packages/laralib-l5scaffold)[summerblue/generator

Extend Laravel's generators scaffold.

34139.9k](/packages/summerblue-generator)[dog-ears/crud-d-scaffold

Extend Laravel 7's generators scaffold.

183.1k](/packages/dog-ears-crud-d-scaffold)

PHPackages © 2026

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