This tile displays "now playing" infomation from Soundtrack Your Brand.
This tile can be used on the Laravel Dashboard.
You can install the package via composer:
composer require solitweb/laravel-dashboard-soundtrack-tile
In the dashboard config file, you must add this configuration in the tiles key.
// in config/dashboard.php
return [
// ...
'tiles' => [
'soundtrack' => [
'email' => env('SOUNDTRACK_EMAIL'),
'password' => env('SOUNDTRACK_PASSWORD'),
'sound_zone' => env('SOUNDTRACK_SOUND_ZONE'),
'refresh_interval_in_seconds' => 60,
],
],
];
In app\Console\Kernel.php
you should schedule the Solitweb\SoundtrackTile\FetchDataFromApiCommand
to run every minute.
// in app/console/Kernel.php
protected function schedule(Schedule $schedule)
{
// ...
$schedule->command(\Solitweb\SoundtrackTile\FetchDataFromApiCommand::class)->everyMinute();
}
In your dashboard view you use the livewire:soundtrack-tile
component.
<x-dashboard>
<livewire:soundtrack-tile position="a1" />
</x-dashboard>
If you want to customize the view used to render this tile, run this command:
php artisan vendor:publish --provider="Solitweb\SoundtrackTile\SoundtrackTileServiceProvider" --tag="dashboard-soundtrack-tile-views"
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.