Я новичок в Laravel графике. Я выполнил все шаги в руководстве (https://charts.erik.cat/getting_started.html). Я работаю с Laravel 5.5, и я загрузил библиотеку C3: '' 'php artisan make: chart alarmChart C3' '' Мой контроллер: '' 'publi c function testChart () {
$chart = new SampleChart;
$chart->labels(['One', 'Two', 'Three', 'Four']);
$chart->dataset('My dataset', 'line', [1, 2, 3, 4]);
$chart->dataset('My dataset 2', 'line', [4, 3, 2, 1]);
return view('AlarmMonitoring.Dashboard.alarmDashboard', compact('chart'));
}'''
Мой маршрут: '' 'Route :: get (' / AlarmMonitoring / AllAlarms / Dashboard ',' AlarmChartController@testChart ');' '' и мой вид: '' '@extends (' templates.2_layout ' )
@ section ('content') @include ('templates.alarmMonitoringMenu')
ИСПЫТАТЕЛЬНЫЕ СХЕМЫ
{!! $ chart-> container () !!}
@ endsection
@ section ('javascripts') @ parent
{!! $chart->script() !!}
@ endsection '' '*
Я не понимаю, почему возвращается ошибка: неопределенная переменная: диаграмма. кто-нибудь может помочь мне понять? Заранее спасибо С уважением