mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
38 lines
914 B
PHP
38 lines
914 B
PHP
<?php
|
|
|
|
use App\Models\PaymentStatus;
|
|
|
|
class PaymentStatusSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Eloquent::unguard();
|
|
|
|
$this->createPaymentStatuses();
|
|
|
|
Eloquent::reguard();
|
|
}
|
|
|
|
private function createPaymentStatuses()
|
|
{
|
|
$statuses = [
|
|
['id' => '1', 'name' => 'Pending'],
|
|
['id' => '2', 'name' => 'Voided'],
|
|
['id' => '3', 'name' => 'Failed'],
|
|
['id' => '4', 'name' => 'Completed'],
|
|
['id' => '5', 'name' => 'Partially Refunded'],
|
|
['id' => '6', 'name' => 'Refunded'],
|
|
];
|
|
|
|
foreach ($statuses as $status) {
|
|
$record = PaymentStatus::find($status['id']);
|
|
if ($record) {
|
|
$record->name = $status['name'];
|
|
$record->save();
|
|
} else {
|
|
PaymentStatus::create($status);
|
|
}
|
|
}
|
|
}
|
|
}
|