Add blog functionality

This commit is contained in:
2020-03-22 19:44:44 +01:00
parent 6409267670
commit 3b8c85215f
15 changed files with 235 additions and 9 deletions

View File

@@ -50,6 +50,11 @@ class Kernel extends ConsoleKernel
$schedule->call(function() {
Storage::disk('local')->put('regioagenda.json', file_get_contents($this->API_URL . 'agenda/overzicht'));
})->everyMinute();
// Update blogs
$schedule->call(function() {
Storage::disk('local')->put('blogs.json', file_get_contents($this->API_URL . 'blog/overzicht'));
})->everyMinute();
}
/**