PHP code example of robbens / laravel-dashboard-upsales

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

    

robbens / laravel-dashboard-upsales example snippets


[
    // ...
    'tiles' => [
        'upsales' => [
            'token' => 'xxxxxxxxxxxx',
            'total-sales' => [
                'from-date' => \Carbon\Carbon::now()->firstOfMonth(), // Date in the past to fetch data from. Can be a Carbon instance or days as integer
            ],
            'latest-sales' => [
                'from-date' => \Carbon\Carbon::now()->subDays(30), // Date in the past to fetch data from. Can be a Carbon instance or days as integer
            ]
        ],
    ]   
]

protected function schedule(Schedule $schedule)
{
    $schedule->command(\Robbens\UpsalesTile\FetchLatestSalesFromUpsalesCommand::class)->everyMinute();
    $schedule->command(\Robbens\UpsalesTile\FetchTotalSalesFromUpsalesCommand::class)->everyMinute();
}