Files
InvoiceShelf/database/factories/NoteFactory.php
Yannic Inselmann b32c334a71 feat: default notes (#263)
* feat: default notes

* feat: include default invoice note in recurring invoice

* feat: use default export in tw config

* fix: test and naming

* fix: consistent ui for switch in note modal

* feat: little text improvements
2025-04-05 12:01:06 +02:00

32 lines
739 B
PHP

<?php
namespace Database\Factories;
use App\Models\Note;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
class NoteFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Note::class;
/**
* Define the model's default state.
*/
public function definition(): array
{
return [
'type' => $this->faker->randomElement(['Invoice', 'Estimate', 'Payment']),
'name' => $this->faker->word(),
'notes' => $this->faker->text(),
'company_id' => User::find(1)->companies()->first()->id,
'is_default' => $this->faker->boolean(),
];
}
}