2017 © Pedro Peláez
 

library laravel-code-generator

An intelligent code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages and/or form-requests! It is extremely flexible and customizable to cover many on the use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

image

crestapps/laravel-code-generator

An intelligent code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages and/or form-requests! It is extremely flexible and customizable to cover many on the use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  • Wednesday, July 4, 2018
  • by CrestApps
  • Repository
  • 22 Watchers
  • 183 Stars
  • 7,105 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 28 Forks
  • 4 Open issues
  • 33 Versions
  • 18 % Grown

The README.md

Tweet, (*1)

Introduction

An intelligent code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages and/or form-requests! It is extremely flexible and customizable to cover many on the use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application., (*2)

For full documentation and live demo please visit CrestApps.com, (*3)

Features

  • Craft clean, reusable, and highly readable code for seamless development.
  • Generate complete resources effortlessly with a single command, supporting both migration and existing database scenarios.
  • Streamline resource creation for all existing database tables with a single command.
  • Save and recreate fields using a JSON file, ensuring adaptability to changing business needs.
  • Leverage JSON-based resource files for easy regeneration, even when business rules evolve.
  • Generate standard CRUD controllers with simple or form-request validation.
  • Customize view templates to alter the standard look and feel of your application.
  • Create models with relations for comprehensive data representation.
  • Establish named routes with and without grouping for efficient navigation.
  • Generate standard CRUD views to facilitate a consistent user experience.
  • Smart migration engine tracks generated migrations to only create necessary ones.
  • Intelligent handling of model relations to simplify development.
  • Highly flexible with rich configurable options to suit diverse needs.
  • Easy commands for resource-file creation, addition, or reduction.
  • Full support for generating multi-language applications.
  • Implement client-side validation for enhanced user interaction.
  • Efficiently handle file uploading and store multiple responses in the database.
  • Generate form-request to clean up controllers and boost code reusability.
  • Create view layouts with and without client-side validation.
  • Change templates at runtime for diverse view generation.
  • Ability to generate views with or without Laravel-Collective integration.
  • Seamless handling of date, time, or datetime fields.
  • Automatic management of boolean fields for hassle-free development.

Installation

  1. To download this package into your Laravel project, use the command-line to execute the following command, (*4)

    composer require crestapps/laravel-code-generator --dev
    
  2. (You may skip this step when using Laravel >= 5.5) To bootstrap the packages into your project while using command-line only, open the app/Providers/AppServiceProvider.php file in your project. Then, add the following code to the register() method., (*5)

    Add the following line to bootstrap laravel-code-generator to the framework., (*6)

    if ($this->app->runningInConsole()) {
        $this->app->register('CrestApps\CodeGenerator\CodeGeneratorServiceProvider');
    }
    

Lessons

Checkout our channel on YouTube.com * https://youtu.be/l21qNcsMAWg * https://youtu.be/infoecfXOCw, (*7)

Available Commands

The command in between the square brackets [] must be replaced with a variable of your choice., (*8)

  • Main commands
    • php artisan create:scaffold [model-name]
    • php artisan create:controller [model-name]
    • php artisan create:model [model-name]
    • php artisan create:form-request [model-name]
    • php artisan create:routes [model-name]
    • php artisan create:migration [model-name]
    • php artisan create:language [model-name]
    • php artisan create:mapped-resources
  • API commands
    • php artisan create:api-scaffold [model-name]
    • php artisan create:api-controller [model-name]
    • php artisan create:api-resources [model-name]
  • API Documentations commands
    • php artisan api-docs:scaffold [model-name]
    • php artisan api-doc:create-controller [model-name]
    • php artisan api-doc:create-view [model-name]
  • Views commands
    • php artisan create:layout [application-name]
    • php artisan create:views [model-name]
    • php artisan create:index-view [model-name]
    • php artisan create:create-view [model-name]
    • php artisan create:edit-view [model-name]
    • php artisan create:show-view [model-name]
    • php artisan create:form-view [model-name]
  • Resource's files commands
    • php artisan resource-file:from-database [model-name]
    • php artisan resource-file:create [model-name]
    • php artisan resource-file:append [model-name]
    • php artisan resource-file:reduce [model-name]
    • php artisan resource-file:delete [model-name]
  • Migration commands
    • php artisan migrate-all
    • php artisan migrate:rollback-all
    • php artisan migrate:reset-all
    • php artisan migrate:refresh-all
    • php artisan migrate:status-all

Contribution

Are you interested in supporting this project and making a contribution? Here's how you can get involved:, (*9)

  • Begin by showing your appreciation for this package on GitHub by giving it a star.
  • Share this project with others to encourage ongoing enhancements and the introduction of new features.
  • Report any bugs, provide comments, share ideas, or express your thoughts about this project by creating an issue on GitHub.
  • Contributors are encouraged! If you're passionate about this project, consider addressing existing issues by submitting a pull request.
  • If possible, consider sponsoring the project.

What did you create with this package?

I'd love to know if your site was generated using this package and list your logo on the documentation site. Please email using my contact info found in composer.json file., (*10)

Examples

The following example assumes that we are trying to create a CRUD called AssetCategory with the fields listed below., (*11)

  • id
  • name
  • description
  • is_active

Basic example - CRUD with migration

php artisan resource-file:create AssetCategory --fields=id,name,description,is_active, (*12)

The above command will create resource-file names /resources/laravel-code-generator/sources/asset_categories.json, (*13)

php artisan create:scaffold AssetCategory --with-migration, (*14)

The above command will create a model app/Models/AssetCategory, a controller app/Http/Controllers/AssetCategoriesController, all views, the routes, and migration class!, (*15)

Basic example - CRUD with migration - Shortcut

php artisan create:scaffold AssetCategory --with-migration --fields=id,name,description,is_active, (*16)

The above command will create resource-file names /resources/laravel-code-generator/sources/asset_categories.json first. Then, it will create a model app/Models/AssetCategory, a controller app/Http/Controllers/AssetCategoriesController, all views, the routes, and migration class!. This is a short way to issuing both `resource-file:create` and `create:scaffold` in one line, (*17)

Basic API example - CRUD with migration

php artisan resource-file:create AssetCategory --fields=id,name,description,is_active, (*18)

The above command will create resource-file names /resources/laravel-code-generator/sources/asset_categories.json, (*19)

php artisan create:scaffold AssetCategory --with-migration, (*20)

The above command will create a model app/Models/AssetCategory, a controller app/Http/Controllers/AssetCategoriesController, all views, the routes, and migration class!, (*21)

Basic example using translations for English and Arabic - with migration

php artisan resource-file:create AssetCategory --fields=id,name,description,is_active --translation-for=en,ar, (*22)

The above command will create resource-file names /resources/laravel-code-generator/sources/asset_categories.json, (*23)

php artisan create:scaffold AssetCategory --with-migration, (*24)

The above command will create a model app/Models/AssetCategory, a controller app/Http/Controllers/AssetCategoriesController, all views, the routes, and migration class!, (*25)

Basic example with form-request

php artisan resource-file:create AssetCategory --fields=id,name,description,is_active, (*26)

The above command will create resource-file names /resources/laravel-code-generator/sources/asset_categories.json, (*27)

php artisan create:scaffold AssetCategory --with-form-request, (*28)

The above command will create a model app/Models/AssetCategory, a controller app/Http/Controllers/AssetCategoriesController, all views, the routes, and app/Http/Requests/AssetCategoriesFormRequest class!, (*29)

Basic example with soft-delete and migration

php artisan resource-file:create AssetCategory --fields=id,name,description,is_active, (*30)

The above command will create resource-file names /resources/laravel-code-generator/sources/asset_categories.json, (*31)

php artisan create:scaffold AssetCategory --with-soft-delete --with-migration, (*32)

The above command will create a model app/Models/AssetCategory, a controller app/Http/Controllers/AssetCategoriesController, all views, the routes, and migration file!, (*33)

Creating resources from existing database

php artisan create:scaffold AssetCategory --table-exists, (*34)

The above command will create resource-file names /resources/laravel-code-generator/sources/asset_categories.json. It is going to assume that the table name is called "asset_categories" in your database. If that is not the case, you can use --table-name=some_other_table_name, (*35)

Then it will create a model app/Models/AssetCategory, a controller app/Http/Controllers/AssetCategoriesController, all views and the routes!, (*36)

You may also create a resource-file from existing database separately using php artisan resource-file:from-database AssetCategory, (*37)

Creating resources from existing database with translation for English and Arabic

php artisan create:scaffold AssetCategory --translation-for=en,ar --table-exists, (*38)

The above command will create resource-file names /resources/laravel-code-generator/sources/asset_categories.json, (*39)

Then it will create a model app/Models/AssetCategory, a controller app/Http/Controllers/AssetCategoriesController, all views and the routes!, (*40)

You may also create a resource-file from existing database separately using php artisan resource-file:from-database AssetCategory --translation-for=en,ar, (*41)

Creating resources from existing database with translation for English and Arabic in two step for better control over the fields!

php artisan resource-file:from-database AssetCategory --translation-for=en,ar, (*42)

php artisan create:scaffold AssetCategory, (*43)

The above command will create resource-file names /resources/laravel-code-generator/sources/asset_categories.json, (*44)

Then it will create a model app/Models/AssetCategory, a controller app/Http/Controllers/AssetCategoriesController, all views and the routes!, (*45)

s * Upgrade Guide, (*46)

License

"Laravel Code Generator" is an open-sourced software licensed under the MIT license, (*47)

The Versions

04/07 2018

v2.3.x-dev

2.3.9999999.9999999-dev

An intelligent code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages and/or form-requests! It is extremely flexible and customizable to cover many on the use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

04/07 2018

dev-master

9999999-dev

An intelligent code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages and/or form-requests! It is extremely flexible and customizable to cover many on the use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek mike callcompleterfullnamealhayek

04/07 2018

v2.2.11

2.2.11.0

An intelligent code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages and/or form-requests! It is extremely flexible and customizable to cover many on the use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek majd alhayek mike callcompleterfullnamealhayek

25/05 2018

v2.2.10

2.2.10.0

An intelligent code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages and/or form-requests! It is extremely flexible and customizable to cover many on the use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek majd alhayek mike callcompleterfullnamealhayek

25/04 2018

v2.2.9

2.2.9.0

An intelligent code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages and/or form-requests! It is extremely flexible and customizable to cover many on the use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek majd alhayek mike callcompleterfullnamealhayek

20/03 2018

v2.2.8

2.2.8.0

An intelligent code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages and/or form-requests! It is extremely flexible and customizable to cover many on the use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

31/12 2017

v2.2.7

2.2.7.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

16/12 2017

v2.2.6

2.2.6.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

01/11 2017

v2.2.5

2.2.5.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

23/10 2017

v2.2.4

2.2.4.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

22/10 2017

v2.2.3

2.2.3.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

15/10 2017

v2.2.2

2.2.2.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

11/10 2017

v2.2.1

2.2.1.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

11/10 2017

v2.2.0

2.2.0.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

29/09 2017

dev-v2.2dev

dev-v2.2dev

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

18/09 2017

v2.1.6

2.1.6.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

20/08 2017

v2.1.5

2.1.5.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

15/07 2017

v2.1.4

2.1.4.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

09/07 2017

v2.1.3

2.1.3.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

08/07 2017

v2.1.2

2.1.2.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

02/07 2017

v2.1.1

2.1.1.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

30/06 2017

v2.1.0

2.1.0.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

23/05 2017

v2.0.0

2.0.0.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

17/04 2017

v1.2.1

1.2.1.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

09/04 2017

v1.2.0

1.2.0.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

27/03 2017

v1.2.x-dev

1.2.9999999.9999999-dev

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

30/01 2017

v1.1.1

1.1.1.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

23/01 2017

v1.1.0

1.1.0.0

A clean code generator for Laravel framework that will save you time!This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.

  Sources   Download

MIT

The Requires

 

laravel generators crud generator code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

16/01 2017

v1.0.4

1.0.4.0

A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many on the use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application

  Sources   Download

MIT

The Requires

 

laravel generators crud code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

09/01 2017

v1.0.3

1.0.3.0

An awesome code generator for laravel framework.

  Sources   Download

MIT

The Requires

 

laravel generators crud code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

05/01 2017

v1.0.2

1.0.2.0

An awesome code generator for laravel framework.

  Sources   Download

MIT

The Requires

 

laravel generators crud code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

01/01 2017

v1.0.1

1.0.1.0

An awesome code generator for laravel framework.

  Sources   Download

MIT

The Requires

 

laravel generators crud code generator crud generator laravel crud generator code-generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator laravel-code-generator crestapps alhayek mike alhayek majd alhayek

31/12 2016

v1.0.0

1.0.0.0

An awesome code generator for laravel framework.

  Sources   Download

MIT

The Requires

 

laravel generators crud code generator crud generator laravel crud generator laravel code generator laravel crud laravel crud builder crud builder views creator routes creator controller creator