mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
* 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
32 lines
739 B
PHP
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(),
|
|
];
|
|
}
|
|
}
|