enhance components, add mailtemplate, add traits for translations, for stats
This commit is contained in:
13
app/Traits/StatHelpers.php
Normal file
13
app/Traits/StatHelpers.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Traits;
|
||||
|
||||
trait StatHelpers
|
||||
{
|
||||
public static function getLastValue()
|
||||
{
|
||||
$item = self::query()->start(now())->end(now()->subSecond())->groupByDay()->get();
|
||||
|
||||
return $item ? $item[0]->value : 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user