Pour afficher les données dans un modèle de graphique
$graph = view('graph')->with('graph', $graph);
Et pour renvoyer les données rendues aux actualités
return view('coin.news', compact('graph','news'));
Code final
$graph = Charts::database(Graph::find(1),'line','highcharts')
->title('Tokens')
->ElementLabel('Coins Sold')
->Responsive(true)
->dimensions(1000,500)
->data(Graph::find(1));
$news = News::all();
$graph = view('graph')->with('graph', $graph);
return view('coin.news', compact('graph','news'));