mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-01-27 06:33:18 +00:00
⚡ Enhance Nostr fetcher: Refactor profile data merging logic for improved efficiency and accuracy.
🛠
38 lines
869 B
PHP
38 lines
869 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\PaymentEvent>
|
|
*/
|
|
class PaymentEventFactory extends Factory
|
|
{
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'einundzwanzig_pleb_id' => \App\Models\EinundzwanzigPleb::factory(),
|
|
'year' => fake()->year(),
|
|
'event_id' => fake()->uuid(),
|
|
'amount' => 21000,
|
|
'paid' => false,
|
|
'btc_pay_invoice' => null,
|
|
];
|
|
}
|
|
|
|
public function paid(): self
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'paid' => true,
|
|
]);
|
|
}
|
|
|
|
public function withYear(int $year): self
|
|
{
|
|
return $this->state(fn (array $attributes) => [
|
|
'year' => $year,
|
|
]);
|
|
}
|
|
}
|