49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Database\Factories\Payment;
 | |
| 
 | |
| use App\Fee;
 | |
| use App\Payment\Payment;
 | |
| use App\Payment\Status;
 | |
| use App\Payment\Subscription;
 | |
| use Illuminate\Database\Eloquent\Factories\Factory;
 | |
| 
 | |
| class PaymentFactory extends Factory
 | |
| {
 | |
| 
 | |
|     protected $model = Payment::class;
 | |
| 
 | |
|     public function definition(): array
 | |
|     {
 | |
|         return [
 | |
|             'nr' => $this->faker->year,
 | |
|             'subscription_id' => Subscription::factory()->create()->id,
 | |
|             'status_id' => Status::factory()->create()->id,
 | |
|             'last_remembered_at' => $this->faker->dateTime,
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function notPaid(): self
 | |
|     {
 | |
|         return $this->for(Status::whereName('Nicht bezahlt')->first());
 | |
|     }
 | |
| 
 | |
|     public function paid(): self
 | |
|     {
 | |
|         return $this->for(Status::whereName('Rechnung beglichen')->first());
 | |
|     }
 | |
| 
 | |
|     public function nr(string $nr): self
 | |
|     {
 | |
|         return $this->state(['nr' => $nr]);
 | |
|     }
 | |
| 
 | |
|     public function subscription(string $name, int $amount): self
 | |
|     {
 | |
|         return $this->for(
 | |
|             Subscription::factory()->state(['name' => $name, 'amount' => $amount])->for(Fee::first()),
 | |
|         );
 | |
|     }
 | |
| 
 | |
| }
 |