StationRuleBatchSeeder.php 278 B

1234567891011121314151617
  1. <?php
  2. use Illuminate\Database\Seeder;
  3. class StationRuleBatchSeeder extends Seeder
  4. {
  5. /**
  6. * Run the database seeds.
  7. *
  8. * @return void
  9. */
  10. public function run()
  11. {
  12. //
  13. factory(\App\StationRuleBatch::class)->times(3)->create();
  14. }
  15. }