Bluz\Db\Table::linkToMany PHP Method

linkToMany() public method

Setup relation "many to many" [table1-key] [table1_key-table2-table3_key] [table3-key]
public linkToMany ( string $model, string $link ) : void
$model string
$link string
return void
    public function linkToMany($model, $link)
    {
        Relations::setRelations($this->model, $model, [$link]);
    }