Looking to hire Laravel developers? Try LaraJobs

laravel-dashboard-jira-tile maintained by creacoon

Description
Jira tile for spatie/laravel-dashboard
Author
Last update
2025/10/29 09:44 (dev-main)
License
Downloads
221

Comments
comments powered by Disqus

An easy overview of Jira in progress stories

Latest Version on Packagist GitHub Tests Action Status Total Downloads

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.

Screenshots

Installation

  1. Require package via composer
  2. Place the required values in the .env file.
  3. Place the tile component in your dashboard.
  4. Schedule the command in the app/console/kernel.php

Composer

You can install the package via composer:

composer require creacoon/laravel-dashboard-jira-tile

Env file

Place this in the .env file.

JIRA_HOST=
JIRA_AUTHENTICATION="basic_token"
JIRA_USER=
JIRA_API_TOKEN=

Tile component

In your dashboard view you use the livewire:jira-tile component.

<x-dashboard>
    <livewire:jira-tile position="a2" refresh-interval="60"/>
</x-dashboard>

Schedule command

In app\Console\Kernel.php you should schedule the following commands.

protected function schedule(Schedule $schedule)
{
    // ...
           $schedule->command(FetchDataFromJiraCommand::class)->everyFiveMinutes();
}

Config file

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"'),
        ]
    ],
];

Customizing the view

If you want to customize the view used to render this tile, run this command:

php artisan vendor:publish --tag="dashboard-jira-tile-views"

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email support@creacoon.nl instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.