pojokcodeid.nvim-lazy/my-snippets/codeigniter4/docs/MODELS.md
asep komarudin 1ab37bd478 update
2023-01-15 00:19:37 +07:00

797 B

Alternate Snippets for Models

[ProjectRoot]/app/Models/*.php

Table of Content

Model Config

  • Command

      ci4:model:config
    
  • Output

      protected $table      = 'tableName';
      protected $primaryKey = 'id';
    
      protected $useAutoIncrement = true;
    
      protected $returnType     = 'array';
      protected $useSoftDeletes = true;
    
      protected $allowedFields = ['name'];
    
      protected $useTimestamps = false;
      protected $createdField  = 'created_at';
      protected $updatedField  = 'updated_at';
      protected $deletedField  = 'deleted_at';
    
      protected $validationRules    = [];
      protected $validationMessages = [];
      protected $skipValidation     = false;