Jira tile for spatie/laravel-dashboard
creacoon/laravel-dashboard-jira-tile is a Laravel package for jira tile for spatie/laravel-dashboard.
It currently has 4 GitHub stars and 221 downloads on Packagist (latest version 2.1.0).
Install it with composer require creacoon/laravel-dashboard-jira-tile.
Discover more Laravel packages by creacoon
or browse all Laravel packages to compare alternatives.
Last updated
This tile shows all the in progress Jira stories. It shows the story key, story title and the assignee profile image.
This tile can be used on the Laravel Dashboard.

.env file.app/console/kernel.phpYou can install the package via composer:
composer require creacoon/laravel-dashboard-jira-tile
Place this in the .env file.
JIRA_HOST=
JIRA_AUTHENTICATION="basic_token"
JIRA_USER=
JIRA_API_TOKEN=
In your dashboard view you use the livewire:jira-tile component.
<x-dashboard>
<livewire:jira-tile position="a2" refresh-interval="60"/>
</x-dashboard>
In app\Console\Kernel.php you should schedule the following commands.
protected function schedule(Schedule $schedule)
{
// ...
$schedule->command(FetchDataFromJiraCommand::class)->everyFiveMinutes();
}
In the dashboard config file, you must add this configuration in the tiles key:
// in config/dashboard.php
return [
// ...
'tiles' => [
'jira' => [
'max_results' => env('JIRA_MAX_RESULTS', 10),
'jql' => env('JIRA_JQL', 'status="In Progress"'),
]
],
];
If you want to customize the view used to render this tile, run this command:
php artisan vendor:publish --tag="dashboard-jira-tile-views"
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.