Files
crater/database/factories/NoteFactory.php
Mohit Panjwani 89ee58590c build version 400
2020-12-02 17:54:08 +05:30

31 lines
615 B
PHP

<?php
namespace Database\Factories;
use Crater\Models\Note;
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.
*
* @return array
*/
public function definition()
{
return [
'type' => $this->faker->randomElement(['Invoice', 'Estimate', 'Payment']),
'name' => $this->faker->word,
'notes' => $this->faker->text
];
}
}