This repository has been archived on 2025-12-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
vollstock 8703e5ff40
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
Add initial Code
2025-10-20 08:57:51 +02:00

20 lines
484 B
PHP

<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
class PaymentTermsFactory extends Factory
{
protected $model = \App\Models\PaymentTerms::class;
public function definition()
{
return [
'name' => $this->faker->unique()->word(),
'description' => $this->faker->sentence(),
'is_fixed' => $this->faker->boolean(),
'days' => $this->faker->numberBetween(7, 60),
];
}
}