PHP code example of jonlynch / laravel-dashboard-uk-weather-tile
1. Go to this page and download the library: Download jonlynch/laravel-dashboard-uk-weather-tile library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jonlynch / laravel-dashboard-uk-weather-tile example snippets
// in config/dashboard.php
return [
// ...
tiles => [
'ukweather' => [
'apikey' => env('MET_OFFICE_API_KEY'),
'locations' => [
'St Bees' => [
'lat' => '54.4891',
'lon' => '-3.6080',
],
'Scafell Pike' => [
'lat' => '54.4543',
'lon' => '-3.2115'
]
],
'refresh_interval_in_seconds' => 600,
]
]
php
// in app\Console\Kernel.php
protected function schedule(Schedule $schedule)
{
$schedule->command(\JonLynch\UkWeatherTile\Commands\FetchMetOfficeDataCommand::class)->everyThirtyMinutes();
}