PHP code example of jhumanj / laravel-model-stats

1. Go to this page and download the library: Download jhumanj/laravel-model-stats 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/ */

    

jhumanj / laravel-model-stats example snippets

 
$result = [
    'a' => 10,
    'b' => 20
];

  // in database.php
  
  'connections' => [
  
    // ... your other connections
  
     'readonly' => [
            'driver' => 'pgsql',  // Copy the settings for the driver you use, but change the user
            'url' => env('DATABASE_URL'),
            'host' => env('DB_HOST', '127.0.0.1'),
            'port' => env('DB_PORT', '5432'),
            'database' => env('DB_DATABASE', 'forge'),
            'username' => env('DB_USERNAME_READONLY', 'forge'), // User is changed here
            'password' => env('DB_PASSWORD_READONLY', ''),
            'charset' => 'utf8',
            'prefix' => '',
            'prefix_indexes' => true,
            'schema' => 'public',
            'sslmode' => 'prefer',
        ],
  ]
- In your .env set the following:
  
 
/**
 * Register the ModelStats gate.
 *
 * This gate determines who can access ModelStats in non-local environments.
 *
 * @return void
 */
protected function gate()
{
    Gate::define('viewModelStats', function ($user) {
        return in_array($user->email, [
            '[email protected]',
        ]);
    });
}
bash
php artisan model-stats:install
php artisan migrate