27 lines
668 B
PHP
27 lines
668 B
PHP
<?php
|
|
|
|
namespace App\Initialize;
|
|
|
|
class InitializeFees {
|
|
|
|
private $bar;
|
|
private $api;
|
|
|
|
public function __construct($bar, $api) {
|
|
$this->bar = $bar;
|
|
$this->api = $api;
|
|
}
|
|
|
|
public function handle() {
|
|
$this->bar->task('Synchronisiere Beiträge', function() {
|
|
$this->api->feesOf(auth()->user()->getNamiGroupId())->each(function($fee) {
|
|
\App\Fee::create(['nami_id' => $fee->id, 'name' => $fee->name])
|
|
->subscriptions()->create([
|
|
'name' => $fee->name,
|
|
'amount' => 1000,
|
|
]);
|
|
});
|
|
});
|
|
}
|
|
}
|