How to add charts in Laravel using Chart JS ?
https://www.itsolutionstuff.com/post/how-to-add-charts-in-laravel-5-using-chart-js-example.html
Last updated
https://www.itsolutionstuff.com/post/how-to-add-charts-in-laravel-5-using-chart-js-example.html
Last updated
By Hardik Savani April 22, 2016 Category : Laravel Chart JSPlayUnmuteLoaded: 1.17%FullscreenIf you need to see example of laravel chartjs. it's simple example of laravel chartjs ajax example. if you have question about how to create chart in laravel then I will give simple example with solution. In this article, we will implement a how to use chartjs in laravel.
you can simply use Line Charts, Bar Charts, Pie Charts, Area Charts, etc using chartjs js. you can use this example with laravel 6, laravel 7, laravel 8 and laravel 9 version as well.
Chartjs is a js library, this library through we can use bar chart, line chart, area chart, column chart, etc. chartjs is a open-source chart library. chartjs also provide several theme and graph that way you can use more chart from here : chartjs Site.
In this example, we will create some dummy users records and then we will display a line chart with all months of current years. so let's follow the below step and add a chart in your laravel app.
Step 1: Install Laravel
This is optional; however, if you have not created the laravel app, then you may go ahead and execute the below command:
Step 2: Create Route
first of all we will create simple route for creating simple line chart. so let's add simple routes as like bellow:
routes/web.php
Read Also: How to add charts in Laravel using Highcharts ?
Step 3: Create Controller
Here, we will create new controller as ChartJSController. so let's add bellow code on that controller file.
app/Http/Controllers/ChartJSController.php
Step 4: Create Blade File:
here, we need to create blade file and in this blade file we use highchart js and use their code.
resources/views/chart.blade.php
Step 5: Create Dummy Records:
Here, we need to add some dummy records on users table as monthly wise.
you can create dummy records using laravel tinker command as bellow:
Run Laravel App:
All the required steps have been done, now you have to type the given below command and hit enter to run the Laravel app:
Now, Go to your web browser, type the given URL and view the app output:
Read Also: Laravel - GEO Chart Example using lavacharts
Output:
I hope it can help you...