PHP code example of kilobyteno / laravel-dashboard-plausible-tile

1. Go to this page and download the library: Download kilobyteno/laravel-dashboard-plausible-tile 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/ */

    

kilobyteno / laravel-dashboard-plausible-tile example snippets


'plausible' => [
    'refresh_interval_in_seconds' => 60,
    'domains' => [
        'kilobyte.no',
        'example.com',
    ],
],

$schedule->command(FetchDataFromPlausibleCommand::class)->everyMinute();
bash
php artisan vendor:publish --tag="plausible-config"
bash
php artisan vendor:publish --provider="Kilobyteno\PlausibleTile\PlausibleTileServiceProvider" --tag="dashboard-plausible-tile-views"