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

13 lines
365 B
HTML

[viewBag]
==
<?php
function onStart()
{
$month = $this->month;
$year = $this->param('year');
//dd($userId);
$this['countByYearAll'] = RainLab\Blog\Models\Post::whereHas('awtor')->whereYear('published_at', $year)->whereMonth('published_at', $month)->where('locale', 'ru')->count();
}
?>
==
<td>{{ countByYearAll == 0 ? "" : countByYearAll }}</td>