Skip to content

Latest commit

 

History

History
64 lines (46 loc) · 2.02 KB

unit.md

File metadata and controls

64 lines (46 loc) · 2.02 KB

Unit

To create a new unit, there are 2 commands we have to run:

Initialization

php artisan laragine:unit UnitName --module=ModuleName --init

To initialize the unit with basic stuff (model, API controller and Web Controller) and after running the command you can configure the unit, here is an example:

php artisan laragine:unit Task --module=Todo --init

then navigate to core/Todo/data/Task.json and update it like in the following:

{
  "attributes": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "text",
      "definition": "nullable"
    },
    "priority": {
      "type": "enum:low,medium,high",
      "definition": "nullable|default:medium"
    },
    "is_done": {
      "type": "boolean",
      "definition": "default:false"
    }
  },
  "relations": {
      this feature will be released soon...
  }
}

Please note the following:

attributes: contains the unit attributes (you can think of attributes as the columns of the table in the database).

type: the type of the attribute, please check all available types here

definition: it holds the column modifiers & indexes in the database, please check all available modifiers & indexes from here and here

You may have noticed that the values in type and definition are designed the same way as we do in the validation rules.

Publishing

php artisan laragine:unit UnitName --module=ModuleName

To create all the related stuff (migration, request, resource, factory, unit test ...etc) based on the previous command:

php artisan laragine:unit Task --module=Todo

Notes

  • when overriding a unit (for example Task unit) by running the command in Publishing section again, all related migration files will be deleted for this unit (for example create table migration file and adding new column/s migration file).