PHPackages                             johnclendvoy/makeall - 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. [CLI &amp; Console](/categories/cli)
4. /
5. johnclendvoy/makeall

ActiveLibrary[CLI &amp; Console](/categories/cli)

johnclendvoy/makeall
====================

A Laravel command to easily create all of the needed files for a new model.

05PHP

Since Aug 25Pushed 7y agoCompare

[ Source](https://github.com/johnclendvoy/MakeAll)[ Packagist](https://packagist.org/packages/johnclendvoy/makeall)[ RSS](/packages/johnclendvoy-makeall/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (1)Used By (0)

MakeAll
=======

[](#makeall)

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/669cd898622b8d6d3fe4559039e706e40fb605909e18f23a50d0034d352c192f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6f686e636c656e64766f792f6d616b65616c6c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/johnclendvoy/makeall)

This package makes it easy to generate all the files needed for a new object in a laravel project. With one command, it will generate, a Model, Controller, Request, Migration and a folder of views all based on templates that you design that work with your workflow.

Installation
------------

[](#installation)

Via Composer

```
$ composer require johnclendvoy/makeall
```

Usage
-----

[](#usage)

```
$ php artisan make:all ObjectName
```

Where `ObjectName` is the singular name of your object. For example, `Event`, `BlogPostComment`, or `PhotoGallery` or whatever you need for your project. This single command is the equivalent to running the following commands:

```
$ php artisan make:model ObjectName
$ php artisan make:controller ObjectNameController
$ php artisan make:request ObjectNameFormRequest
$ php artisan make:migration create_object_names_table --create=object_names
$ mkdir ./resources/views/object-name
$ cd resources/views/object-name
$ touch index.blade.php
$ touch show.blade.php
$ touch create.blade.php
```

The singularity or case of the argument `ObjectName` isn't really important. The following commands are supported and equivalent.

```
$ php artisan make:all ObjectName
$ php artisan make:all ObjectNames
$ php artisan make:all object-name
$ php artisan make:all object-names
$ php artisan make:all object_name
$ php artisan make:all Object_Names
$ php artisan make:all "object name"
$ php artisan make:all "Object Names"
```

Issues
------

[](#issues)

If you discover any issues, or would like to improve this package, please do not hesitate to email [john.c.lendvoy@gmail.com](john.c.lendvoy@gmail.com) or submit an issue on [github](https://github.com/johnclendvoy/makeall).

Credits
-------

[](#credits)

- [John C. Lendvoy](http://johnclendvoy.ca)

License
-------

[](#license)

MIT license. Please see the [license file](license.md) for more information.

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity40

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/cd0f2f97cb54ee9f182e8a60189c6b803ff04006f777c2e7d47fc28ae972e1a3?d=identicon)[johnclendvoy](/maintainers/johnclendvoy)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/johnclendvoy-makeall/health.svg)

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

###  Alternatives

[wp-cli/wp-cli

WP-CLI framework

5.0k17.2M320](/packages/wp-cli-wp-cli)[consolidation/annotated-command

Initialize Symfony Console commands from annotated command class methods.

22569.8M19](/packages/consolidation-annotated-command)[chi-teck/drupal-code-generator

Drupal code generator

26947.8M5](/packages/chi-teck-drupal-code-generator)[seld/cli-prompt

Allows you to prompt for user input on the command line, and optionally hide the characters they type

24725.8M17](/packages/seld-cli-prompt)[illuminate/console

The Illuminate Console package.

12944.1M5.1k](/packages/illuminate-console)[php-tui/php-tui

Comprehensive TUI library heavily influenced by Ratatui

589747.0k6](/packages/php-tui-php-tui)

PHPackages © 2026

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