jonlynch/briefing-tile
Composer 安装命令:
composer require jonlynch/briefing-tile
包简介
A package to add briefings to the dashboard
README 文档
README
A tile to display briefing information
This tile can be used on the Laravel Dashboard.
Installation
You can install the package via composer:
$ composer require jonlynch/briefing-tile
Usage
In your dashboard view you use the livewire:briefing-tile component.
<x-dashboard>
<livewire:briefing-tile position="a1:a12" />
</x-dashboard>
Add the config to the tiles sections of your config/dashboard.php
// in config/dashboard.php
return [
// ...
tiles => [
'briefing' => [
'url' => env('BRIEFING_URL'),
],
]
In app\Console\Kernel.php you should schedule the JonLynch\BriefingTile\Commands\FetchBriefingDataCommand to run every minute.
// in app\Console\Kernel.php
protected function schedule(Schedule $schedule)
{
$schedule->command(\JonLynch\BriefingTile\Commands\FetchBriefingDataCommand::class)->everyMinute();
}
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 :author_email instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 31
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-06-01