Download the PHP package pilabrem/laravel-code-generator-ui without Composer

On this page you can find all versions of the php package pilabrem/laravel-code-generator-ui. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-code-generator-ui

Laravel code generator ui

Introduction

User interface to help developpers with laravel-code-generator commands. With this package combined to crestapps/laravel-code-generator, developpers can create easily their CRUD.

You can visite crestapps/laravel-code-generator repository to see how to set it up properly.

Features

Installation

  1. To download this package into your laravel project, use the command-line to execute the following command

  2. If don't have a layout, you can create one for your project with this command

  3. (You may skip this step when using Laravel >= 5.5) To bootstrap the packages into your project , open the app/Providers/AppServiceProvider.php file in your project. Then, add the following code to the register() method.

    Add the following line to bootstrap laravel-code-generator to the framework.

  4. Publish the package assets

  5. Now, you can migrate database

Usages

  1. Manage tables models

    To manage your tables models, access to yourHost/code-generator-ui/table.

    After visiting the link, you can click on the plus and green button at the top to add a table model. In this form, you should fill:

    • Model name

      Use Camel Case for Model Name

    • Table name (optional)

      Use Snake Case for table name

    • Generate migrations (optional)
    • Generate with form request (optional)
    • Generate with soft delete (optional)
    • Translations (optional)

      Exemples: en,fr

    • Primary key if the primary key is not the id attribute that is added by default (optional)
  2. Manage tables models attributes

    To manage tables models attributes, you must click on the view details button corresponding to the table model. After that, you will see all attributes of the table model. To add one, click on the plus and green button.

    Attribute properties:

    • Enter attribute name
    • Enter attribute labels (optional)
    • Enter attribute placeholder (optional)
    • Enter attribute laravel validation (optional)

      Example: required

    • Enter attribute Html Type (default: text)
    • Enter attribute database data type (default: string)
    • Enter attribute Data Type Params (optional)

      Examples:

      • varchar(20) ==> 20
      • double(20,2) ==> 20,2
    • Enter attribute Options for select, radio, checkbox, ... (optional)

      Example: Male|Female

    • Enter attribute Date format (optional)

      Example: Y-m-d

    • Enter attribute Html Value (optional)
    • Enter attribute CSS class (optional)
    • Enter attribute Data value (optional)

    PS: It's not allowed to use one of the following symbols in input:

    ; : ,

All versions of laravel-code-generator-ui with dependencies

PHP Build Version
Package Version
Requires laravel/framework Version >=5.8
crestapps/laravel-code-generator Version >=2.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package pilabrem/laravel-code-generator-ui contains the following files

Loading the files please wait ....