Basic implementation of payment methods
This commit is contained in:
@@ -14,6 +14,7 @@ use App\Enumerations\ParticipationType;
|
||||
use App\Enumerations\SwimmingPermission;
|
||||
use App\Enumerations\UserRole;
|
||||
use App\Models\CronTask;
|
||||
use App\Models\PaymentMethod;
|
||||
use App\Models\Tenant;
|
||||
|
||||
class ProductionDataSeeder {
|
||||
@@ -28,6 +29,12 @@ class ProductionDataSeeder {
|
||||
$this->installParticipationFeeTypes();
|
||||
$this->installParticipationTypes();
|
||||
$this->installEfzStatus();
|
||||
$this->installPaymentMethods();
|
||||
}
|
||||
|
||||
private function installPaymentMethods() {
|
||||
PaymentMethod::create(['slug' => PaymentMethod::PAYMENT_ACCOUNT_TRANSACTION]);
|
||||
PaymentMethod::create(['slug' => PaymentMethod::PAYMENT_NOT_DEFINED]);
|
||||
}
|
||||
|
||||
private function installEfzStatus() {
|
||||
|
||||
Reference in New Issue
Block a user