ORIENT/themes/modern2/partials/report/month.htm

14 lines
367 B
HTML

[viewBag]
==
<?php
function onStart()
{
$userId = $this->userId;
$month = $this->month;
$year = $this->year;
//dd($userId);
$this['countByMonth'] = Db::table('rainlab_blog_posts')->where('user_id', $userId)->whereMonth('published_at', $month)->whereYear('published_at', $year)->count();
}
?>
==
<td>{{ countByMonth == 0 ? '' : countByMonth }}</td>