/ database / factories / EMLTemplateFactory.php
EMLTemplateFactory.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\EMLTemplate>
 9   */
10  class EMLTemplateFactory 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              //
21          ];
22      }
23  }