/ database / factories / ProtectionProfileFactory.php
ProtectionProfileFactory.php
 1  <?php
 2  
 3  namespace Database\Factories;
 4  
 5  use Illuminate\Database\Eloquent\Factories\Factory;
 6  
 7  /**
 8   * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\ProtectionProfile>
 9   */
10  class ProtectionProfileFactory extends Factory
11  {
12      /**
13       * Define the model's default state.
14       *
15       * @return array<string, mixed>
16       */
17      public function definition()
18      {
19          return [
20              'name' => $this->faker->word(),
21              'description' => $this->faker->word(),
22          ];
23      }
24  }