/ database / seeders / ProtectionProfileSeeder.php
ProtectionProfileSeeder.php
 1  <?php
 2  
 3  namespace Database\Seeders;
 4  
 5  use App\Models\ProtectionProfile;
 6  use Illuminate\Database\Console\Seeds\WithoutModelEvents;
 7  use Illuminate\Database\Seeder;
 8  
 9  class ProtectionProfileSeeder extends Seeder
10  {
11      /**
12       * Run the database seeds.
13       *
14       * @return void
15       */
16      public function run()
17      {
18          ProtectionProfile::factory()->create(3);
19      }
20  }