* добавил минуты

* исправил баг в календаре с 12 месяцем ('yyyy-00-dd' => 'yyyy-12-dd')
This commit is contained in:
anatolidew
2021-11-23 10:55:41 +03:00
parent b497c000f6
commit 45fcfe16d1
10 changed files with 33 additions and 8 deletions

View File

@ -18,7 +18,7 @@ echo GridView::widget([
if ($model->task) {
$i = 1;
foreach ($model->task as $task) {
$text .= "<p>$i. ($task->hours_spent ч.) $task->task</p>";
$text .= "<p>$i. ($task->hours_spent ч., $task->minutes_spent мин.) $task->task</p>";
$i++;
}
}