1. Go to this page and download the library: Download mattkingshott/statistics 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/ */
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Statistics\InteractsWithStatistics;
class Article extends Model
{
use InteractsWithStatistics;
}
Article::track();
Article::track()
->count() // Count all records
->sum('likes') // Get the sum of all records using the 'likes' column
->average('likes') // Get the average value from the 'likes' column
->minimum('likes') // Get the smallest value in the 'likes' column
->maximum('likes'); // Get the largest value in the 'likes' column