diff --git a/README.md b/README.md index 4b6a9e5..7b0261d 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ ## 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. +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 use cases. It is shipped with a cross-browser compatible template, along with client-side validation to modernize your application. -For full documentation and live demo please visit CrestApps.com +For full documentation and live demo, please visit CrestApps.com ## Features @@ -12,7 +12,7 @@ For full documentation and live demo please visit Create named routes with and without group.
  • Create standard CRUD views.
  • Smart migration engine! Keeps track of all generated migrations to only create the needed migration.
  • -
  • Intelligent enough to automatically handles the relations between the models.
  • +
  • Intelligent enough to automatically handle the relations between the models.
  • Very flexible and rich with configurable options.
  • Easy commands to create resource-file; additionally, add or reduce existing resource-file.
  • -
  • Full capability to generate multi-languages applications.
  • +
  • Full capability to generate multi-language applications.
  • Client-side validation.
  • File uploading handling.
  • Auto store multiple-response in the database.
  • @@ -38,7 +38,7 @@ For full documentation and live demo please visit
    A layout is required for the default views! The code generator allows you to create a layout using the command-line. Of cource you can use your own layout. You'll only need to include [CSS bootstrap framework](http://getbootstrap.com/ "CSS bootstrap framework") in your layout for the default templates to work properly. Additionally, you can chose to you design your own templetes using a different or no css framework. + +> A layout is required for the default views! The code generator allows you to create a layout using the command-line. Of course, you can use also your own layout. You'll only need to include [CSS bootstrap framework](http://getbootstrap.com/ "CSS bootstrap framework") in your layout for the default templates to work properly. Additionally, you can chose to design your own templetes using a different framework or css. ## Lessons Checkout our channel on YouTube.com @@ -128,11 +129,11 @@ Checkout our channel on --table-name=some_other_table_name

    +

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

    -

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

    -

    You may also create a resource-file from existing database separately using php artisan resource-file:form-database AssetCategory

    +

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

    +

    You may also create a resource-file from existing database separately using php artisan resource-file:from-database AssetCategory

    @@ -196,18 +197,18 @@ The following example assumes that we are trying to create a CRUD called As

    php artisan create:resources AssetCategory --translation-for=en,ar --table-exists

    -

    The above command will create resource-file names /resources/laravel-code-generator/sources/asset_categories.json

    +

    The above command will create resource-file named /resources/laravel-code-generator/sources/asset_categories.json

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

    -

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

    +

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

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

    php artisan resource-file:form-database AssetCategory --translation-for=en,ar

    +

    php artisan resource-file:from-database AssetCategory --translation-for=en,ar

    php artisan create:resources AssetCategory

    -

    The above command will create resource-file names /resources/laravel-code-generator/sources/asset_categories.json

    -

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

    +

    The above command will create resource-file named /resources/laravel-code-generator/sources/asset_categories.json

    +

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