| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Database\Factories;
- use Illuminate\Database\Eloquent\Factories\Factory;
- /**
- * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Template>
- */
- class TemplateFactory extends Factory
- {
- /**
- * Define the model's default state.
- *
- * @return array<string, mixed>
- */
- public function definition()
- {
- return [
- 'name' => $this->faker->name(),
- ];
- }
- /**
- * Indicate that the model's email address should be unverified.
- *
- * @return static
- */
- public function unverified()
- {
- return $this->state(function (array $attributes) {
- return [
- 'name' => null,
- ];
- });
- }
- }
|