PHPackages                             dilneiss/back-tools - 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. dilneiss/back-tools

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

dilneiss/back-tools
===================

dilneiss/back-tools

012PHP

Since Jul 30Pushed 1y ago1 watchersCompare

[ Source](https://github.com/dilneiss/back-tools)[ Packagist](https://packagist.org/packages/dilneiss/back-tools)[ RSS](/packages/dilneiss-back-tools/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Backpack DevTools
=================

[](#backpack-devtools)

A web interface to generate migrations, models and CRUDs. Forget about the command line. Forget about migration types. Go from idea to full CRUD in seconds.

[![2021-08-05 18 37 50](https://user-images.githubusercontent.com/1032474/128379216-72ae55fa-fcff-4747-8c35-42c733923c94.gif)](https://user-images.githubusercontent.com/1032474/128379216-72ae55fa-fcff-4747-8c35-42c733923c94.gif)

Why?
----

[](#why)

What's your current process, when creating an entity in your project? We bet you need:

- a `migration`;
- a `model`;
- maybe a `factory` and a `seeder`;
- then you need an admin panel for it, so you create a `CrudController`, `CrudRequest`, `route` and `sidebar item`;

Haven't you gotten tired of doing that, for each new entity? We have. Not only is it boring and repetitive... it takes quite a bit of time to get *just right*. We've all tried to speed this up using *existing tools*. Hell, we've even contributed or taken over their maintenance:

- we've used `laracasts/generators` for `migrations` and `models`, but it's difficult to generate a *final* migration in one command line; we always forget stuff... and it doesn't generate relationships;
- we've used `laravel-shift/blueprint` for `migrations` and `models` *with* relationships, but then you have to learn&amp;remember the Blueprint YAML syntax; we forget it, so we get into a back-and-forth between the Blueprint docs, the Laravel migration docs, the YAML file and the generated files;
- then for CRUDs, we always use `backpack/generators`, but... it doesn't fill in the `CrudRequest` or the `fields` &amp; `columns`... it's a technical limitation... so we have to punch in every column/field we want afterwards;

We're super-grateful to the creators of those tools. We've been using them *for years* and contributed to their projects as much as possible. But... we've always felt we can do better. So we did.

We're *web developers*, so we've created a *web interface* (😱 ), which uses those exact tools behind the scenes, connects them and polishes the generated files, automatically. We *thought* it would take us a few days, maybe weeks, but after quite a few *months* of working at this, we can finally say we've got something *better*. Something much *much* better.

Thanks to this package, creating new entities is no longer boring, or tedious. It's actually... fun 😀 We think you'll *absolutely love* this new way of starting your Laravel projects... In fact, we think you won't be able to go back to writing them by hand. We know we can't 😀

Features
--------

[](#features)

### Generate full entities in seconds

[](#generate-full-entities-in-seconds)

Thanks to Backpack\\Devtools, you can just fill in one form:

[![Screenshot 2021-08-05 at 18 20 43](https://user-images.githubusercontent.com/1032474/128375953-72b637c5-75cd-4626-a36b-e49f9f4d9952.png)](https://user-images.githubusercontent.com/1032474/128375953-72b637c5-75cd-4626-a36b-e49f9f4d9952.png)

And you can get:

- a complete `migration`;
- a `model` with `fillable` and relationships already written;
- a `seeder` and `factory` with the columns defined;
- a `CrudController` with the fields &amp; columns already defined;
- a `CrudRequest` with the validation rules already inferred from the database restrictions;
- a `route` and `sidebar item` for the admin panel;

That's a full working CRUD, you can go ahead and add items from the admin interface.

No, really. Here's what the form above generated:

[![2021-08-05 18 24 30](https://user-images.githubusercontent.com/1032474/128376790-8bd06869-6a7c-45c1-8328-14aacd9d178a.gif)](https://user-images.githubusercontent.com/1032474/128376790-8bd06869-6a7c-45c1-8328-14aacd9d178a.gif)

### Manage your database migrations in a web interface

[](#manage-your-database-migrations-in-a-web-interface)

No more dumpster-diving into the `database/migrations` directory. Easily see your migrations, which ones are run, run them, roll them back and even open them in your editor to slighly polish them.

[![2021-08-05 13 00 51](https://user-images.githubusercontent.com/1032474/128332124-acd2e3d9-c79e-42d0-9c7b-dfc0c8bbd6d3.gif)](https://user-images.githubusercontent.com/1032474/128332124-acd2e3d9-c79e-42d0-9c7b-dfc0c8bbd6d3.gif)

### Manage your models in a web interface

[](#manage-your-models-in-a-web-interface)

See the state of your Models, which ones have CRUDs, which ones have factories and seeders and insert dummy data right then&amp;there.

[![2021-08-05 18 45 15](https://user-images.githubusercontent.com/1032474/128380633-1897f33f-0224-410c-b63e-b1d4fea9202f.gif)](https://user-images.githubusercontent.com/1032474/128380633-1897f33f-0224-410c-b63e-b1d4fea9202f.gif)

### Generate custom admin panel components

[](#generate-custom-admin-panel-components)

\[UNDER DEVELOPMENT\] Soon enough, this package will also help you:

- use templates to create a custom Backpack blade files - `columns`, `fields`, `filters`, `buttons`, `widgets`;
- use templates to create custom Backpack `Operations`;
- create completely custom Backpack pages (like dashboards);

You can *forget* about using the command line for those things. You can forget about looking inside the `vendor/backpack/crud` folder to see what you want to overwrite or get inspiration from. You think it, you click it, you have it.

---

Requirements
------------

[](#requirements)

Backpack DevTools assumes that you already have:

- Laravel 8+
- PHP 7.3+
- MySQL 5.7.x / 8.x
- SQLite 3.36+ (eg. `pdo_sqlite` extension enabled)
- `backpack/crud` v4.1+ properly installed

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

[](#installation)

### Quick Installation

[](#quick-installation)

In your Laravel + Backpack project, run:

```
php artisan backpack:require:devtools
```

It will ask you for your token &amp; password - which you get after you purchase this package. If you've purchased previously, you can [see your token and password in your Backpack account](https://backpackforlaravel.com/user/tokens).

### Manual Installation

[](#manual-installation)

Alternatively, if the quick installation above doesn't work, here are the steps you can take:

**Step 1.** [Buy access to this package](https://backpackforlaravel.com/cart/add-unique-product/1) and you'll get an [access token](https://backpackforlaravel.com/user/tokens). With that token in hand, you should instruct your project to pull in DevTools from our private repository, instead of Packagist:

- add [your token](https://backpackforlaravel.com/user/tokens) to your project's `auth.json` file by running `composer config http-basic.backpackforlaravel.com [your-token-username] [your-token-password]`
- add the Backpack private repo to your `composer.json`:

```
    "repositories": [
        {
            "type": "composer",
            "url": "https://repo.backpackforlaravel.com/"
        }
    ],
```

**Step 2.** Install the package using Composer:

```
# Recommended - get latest DevTools version and update dependencies (backpack, livewire, sushi, blueprint)
composer require --dev --with-all-dependencies backpack/devtools

# Alternatively - get the version of DevTools you can install without updating anything
composer require --dev backpack/devtools
```

Common errors:

- composer require conflict - run the recommended method above or `composer update`, to get the latest version;
- `Error 500 Class X does not seem to be auto-loaded` - run the recommended method above or `composer update`, to get the latest version;

**Step 3.** Run the installation command and follow the instructions:

```
php artisan backpack:devtools:install
```

That's it. You can now visit `your-app-name/admin/devtools` to use DevTools. The rest is point&amp;click.

> SUPER-IMPORTANT!!! You must make sure your `staging` and `production` environments DO NOT include the DevTools interface and functionality:
>
> - if you auto-deploy your project using `composer` &amp; `git` (using Laravel Forge, Envoyer or anything else), make sure that you're running `composer install --no-dev`;
> - if you deploy your project by uploading a ZIP file or FTP the files, make sure you upload builds *after* you've run `composer install --no-dev`;
> - alternatively, after you're done generating stuff using DevTools, just do `composer remove --dev backpack/devtools`, that'll get rid of it; or include that command in your build pipeline;

Support
-------

[](#support)

To submit issues, bugs and feature requests, please see our [laravel-backpack/devtools-issues](https://github.com/laravel-backpack/devtools-issues) repo on Github.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

License
-------

[](#license)

This software is proprietary &amp; closed-source, released under the [End-User License Agreement (EULA) for Private Backpack Addons](https://backpackforlaravel.com/eula). A copy of that license is also provided inside the source code - you can read that file by using the tabs at the beginning of this page.

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance28

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity17

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/339a3fb5132ca6fdf590eb87aaf69c97a45b1980dc3bb7109b89b531c56b4d62?d=identicon)[dilneiss](/maintainers/dilneiss)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/dilneiss-back-tools/health.svg)

```
[![Health](https://phpackages.com/badges/dilneiss-back-tools/health.svg)](https://phpackages.com/packages/dilneiss-back-tools)
```

PHPackages © 2026

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