Поэтому я пытаюсь добавить новую метрическую тенденцию в ресурс, но всегда получаю следующую ошибку:
Too few arguments to function Laravel\Nova\Resource::__construct(), 0 passed in /crm/nova/src/Metrics/Trend.php on line 116 and exactly 1 expected {"userId":1,"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalThrowableError(code: 0): Too few arguments to function Laravel\\Nova\\Resource::__construct(), 0 passed in crm/nova/src/Metrics/Trend.php on line 116 and exactly 1 expected at /crm/nova/src/Resource.php:108)
Я пытаюсь получить данные из столбца ph_value в таблице базы данных «reports».
<?php
namespace App\Nova\Metrics;
use Illuminate\Http\Request;
use Laravel\Nova\Metrics\Trend;
use App\Nova\Report;
class ph extends Trend
{
/**
* Calculate the value of the metric.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*/
public function calculate(Request $request)
{
return $this->countByDays($request, Report::class, 'ph_value');
}
/**
* Get the ranges available for the metric.
*
* @return array
*/
public function ranges()
{
return [
30 => '30 Days',
60 => '60 Days',
90 => '90 Days',
];
}
/**
* Determine for how many minutes the metric should be cached.
*
* @return \DateTimeInterface|\DateInterval|float|int
*/
public function cacheFor()
{
// return now()->addMinutes(5);
}
/**
* Get the URI key for the metric.
*
* @return string
*/
public function uriKey()
{
return 'ph';
}
}
Карта, конечно, включена.
public function cards(Request $request)
{
return [
new Metrics\Ph,
];
}
Метрика тренда загружается постоянно, как будто она недоступна для извлечения данных.