[ 'RainLab\Blog\Models\Category', 'table' => 'rainlab_blog_category_pivot', 'pivot' => ['id', 'category_id', 'order'] ], ]; public $hasMany = [ 'post' => [ 'RainLab\Blog\Models\Post', 'key' => 'post_id' ], 'categoryGroupPivot' => [ 'RainLab\Blog\Models\PostCategoryGroupPivot', 'key' => 'category_group_id' ] ]; /** * @var array Validation rules */ public $rules = [ ]; }