// total
$query = Model_Artist::find($artistId, array(
'related' => array(
'products'
),
));
$total = $products->count();
// the wanted products
$query = Model_Artist::find($artistId, array(
'related' => array(
'products' => array(
'order_by' => array('products.id' => 'DESC'),
'limit' => $limit,
'offset' => $start,
),
),
));
$products = $query->to_array();
It looks like you're new here. If you want to get involved, click one of these buttons!