1. Go to this page and download the library: Download jakubkratina/larachartie library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jakubkratina / larachartie example snippets
\JK\LaraChartie\ChartieServiceProvider::class
'Chartie' => JK\LaraChartie\Facades\Chart::class
namespace App\Charts\DataTable;
use Carbon\Carbon;
use JK\LaraChartie\Contracts\DataTable;
use JK\LaraChartie\Contracts\Source;
use JK\LaraChartie\DataTable\Type;
class UsersSource implements JK\LaraChartie\Contracts\Source
{
/**
* @param DataTable $dataTable
*/
public function columns(DataTable $dataTable)
{
$dataTable
->addColumn(Type::DATE, 'Created At')
->addStringColumn('Name')
->addStringColumn('Country');
}
/**
* @param DataTable $dataTable
*/
public function fill(DataTable $dataTable)
{
foreach (User::all() as $user) {
$dataTable->addRow(
$user->created_at,
$user->firstname,
[
'value' => $user->country,
'format' => 'User is from ' . $user->country
]
);
}
}
}
use use JK\LaraChartie\Facades\Chart;
use use App\Charts\DataTable\UsersStorage;
class UsersController extends Controller
{
/**
* @return array
*/
public function progress()
{
return Chart::dataTable()
->source(UsersStorage::class)
->toArray();
}
}