dietercoopman / laravel-dashboard-laravelnews-tile
A Laravel News tile for Laravel Dashboard
Installs: 247
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/dietercoopman/laravel-dashboard-laravelnews-tile
Requires
- php: ^8.0|^7.4
- ext-json: *
- chillerlan/php-qrcode: ^4.3
- mtownsend/xml-to-array: ^2.0
- spatie/laravel-dashboard: ^3.0
Requires (Dev)
- phpunit/phpunit: ^9.3
README
laravel-dashboard-laravelnews-tile
A Laravel News tile for the Spatie Dashboard. This tile will show you the Latest Laravel news articles on your Spatie Dashboard
Installation
You can install the package via composer:
composer require dietercoopman/laravel-dashboard-laravelnews-tile
Config file
In the dashboard config file, you must add this configuration in the tiles key.
// in config/dashboard.php
return [
// ...
'tiles' => [
'laravelnews' => [
'refresh_interval_in_seconds' => 300,
'number_of_articles' => 10,
],
],
];