Concrete5 ORM包。

安装: 38

依赖: 0

建议者: 0

安全: 0

星标: 3

关注者: 2

分支: 0

开放问题: 0

类型:项目

1.0.2 2017-06-29 23:26 UTC

This package is not auto-updated.

Last update: 2024-09-23 06:56:13 UTC


README

C5orm是Concrete5 CMS的对象关系映射(ORM)。C5orm受到eloquent的启发,因此c5orm的语法与eloquent语法非常相似。

使用说明

composer require "fudyartanto/c5orm"

use Fudyartanto\C5orm\Model;

class MyTable extends Model
{
    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected static $table = 'MyTableName';
}

// Retrieve a model by its primary key
$mytable = MyTable::find(1)

文档

文档包含在此仓库的根目录中,并在https://fudyartanto.github.io/c5orm/公开提供。文档也可以在本地运行。