Built with from Grav and Hugo
Example
join[]=joinType:tableName:leftKey:rightKey
The join clause takes 4 parameters
inner
left
cross
More examples
join[]=inner:posts:posts.user_id:users.id
is the same as
$model->join('posts', 'posts.user_id', '=', 'users.id', 'inner');