You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
207 B

  1. <?php
  2. use App\Cost;
  3. use Illuminate\Database\Seeder;
  4. class CostSeeder extends Seeder
  5. {
  6. public function run()
  7. {
  8. Cost::insert(
  9. factory(Cost::class, 6000)->raw()
  10. );
  11. }
  12. }