g_sto/themes/gokbakja/partials/report/row.htm

25 lines
843 B
HTML
Raw Normal View History

2023-09-19 19:52:14 +00:00
[viewBag]
==
<?php
function onStart (){
$no = $this->no;
$year = $this->year;
$this["all_amount"] = Romanah\Gokbakja\Models\Production::whereMonth('created_at', $no)
->whereYear('created_at', $year)
->avg('all_amount');
}
?>
==
<tr>
<td style="font-weight: bold;width: 5%;">{{no}}</td>
<td><a href="/all-production-month/{{no}}" style="font-weight: bold;color: #0005c5;"> {{title}} </a></td>
<td><a href="/all-production-month/{{no}}" style="font-weight: bold;"> {{all_amount|number_format}} kg</a></td>
{% for key, record in products %}
{% partial "report/month-row" prodId=record.id %}
{% endfor %}
<td style="font-weight: bold;color: #0005c5;">{{hours}}</td>
</tr>