PHP code example of creacoon / laravel-dashboard-jira-tile
1. Go to this page and download the library: Download creacoon/laravel-dashboard-jira-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/ */
creacoon / laravel-dashboard-jira-tile example snippets
protected function schedule(Schedule $schedule)
{
// ...
$schedule->command(FetchDataFromJiraCommand::class)->everyFiveMinutes();
}
// in config/dashboard.php
return [
// ...
'tiles' => [
'jira' => [
'max_results' => env('JIRA_MAX_RESULTS', 10),
'jql' => env('JIRA_JQL', 'status="In Progress"'),
]
],
];
bash
php artisan vendor:publish --tag="dashboard-jira-tile-views"