PHPackages                             phpjuice/blueprint - 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. [Admin Panels](/categories/admin)
4. /
5. phpjuice/blueprint

ArchivedLibrary[Admin Panels](/categories/admin)

phpjuice/blueprint
==================

Blueprint is a powerful CRUD generator to speed up the development of your laravel apps.

v2.0.0(5y ago)75311MITPHPCI failing

Since Mar 30Pushed 3mo ago1 watchersCompare

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

READMEChangelog (2)Dependencies (7)Versions (4)Used By (0)

Blueprint
=========

[](#blueprint)

[![Latest Stable Version](https://camo.githubusercontent.com/1ad91b42bde7c04ee14d0cfe4b32c45d6a53bf3c6c8c11fbd24caed65bac2a2b/68747470733a2f2f706f7365722e707567782e6f72672f7068706a756963652f626c75657072696e742f762f737461626c65)](https://packagist.org/packages/phpjuice/blueprint)[![Total Downloads](https://camo.githubusercontent.com/b078f7caa547c67f65244a082347243f6f37d090b0936a993094d523b7ff2f35/68747470733a2f2f706f7365722e707567782e6f72672f7068706a756963652f626c75657072696e742f646f776e6c6f616473)](https://packagist.org/packages/phpjuice/blueprint)[![License](https://camo.githubusercontent.com/a3bb861b10b18da1801b2838267e4f48e6bedbcefae84ca8e573f493026d9a80/68747470733a2f2f706f7365722e707567782e6f72672f7068706a756963652f626c75657072696e742f6c6963656e7365)](https://packagist.org/packages/phpjuice/blueprint)

Blueprint is a powerful CRUD generator to speed up the development of your laravel apps.

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

[](#installation)

Blueprint Package requires Laravel 5.5 or higher.

> **INFO:** If you are using an older version of Laravel this package may not function correctly.

The supported way of installing Blueprint package is via Composer.

```
composer require phpjuice/blueprint --dev
```

This package supports Package Auto Discovery feature on Laravel 5.5 or higher the service provider will automatically get registered. In older versions of the framework just add the service provider in `config/app.php` file:

```
'providers' => [
    // ...
    PHPJuice\Blueprint\BlueprintServiceProvider::class,
];
```

After that, you can publish its [Template Files](https://github.com/PHPJuice/Blueprint/tree/master/src/Stubs) using the vendor:publish Artisan command:

```
php artisan vendor:publish --tag=blueprint.templates
```

You can publish the [Configuration](https://github.com/PHPJuice/Blueprint/blob/master/config/blueprint.php) file with:

```
php artisan vendor:publish --tag=blueprint.config
```

When published, the [`config/blueprint.php`](https://github.com/PHPJuice/Blueprint/blob/master/config/blueprint.php) config file contains:

```
