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
243 B

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