34 lines
722 B
PHP
34 lines
722 B
PHP
|
<?php
|
||
|
|
||
|
namespace Database\Factories\Invoice\Models;
|
||
|
|
||
|
use App\Invoice\Models\InvoicePosition;
|
||
|
use App\Member\Member;
|
||
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||
|
|
||
|
/**
|
||
|
* @extends Factory<InvoicePosition>
|
||
|
*/
|
||
|
class InvoicePositionFactory extends Factory
|
||
|
{
|
||
|
protected $model = InvoicePosition::class;
|
||
|
|
||
|
/**
|
||
|
* Define the model's default state.
|
||
|
*
|
||
|
* @return array<string, mixed>
|
||
|
*/
|
||
|
public function definition()
|
||
|
{
|
||
|
return [
|
||
|
'description' => $this->faker->words(4, true),
|
||
|
'member_id' => Member::factory()->defaults()->create()->id,
|
||
|
];
|
||
|
}
|
||
|
|
||
|
public function price(int $price): self
|
||
|
{
|
||
|
return $this->state(['price' => $price]);
|
||
|
}
|
||
|
}
|