WaybillFinancialSnapshotsSeeder.php 334 B

12345678910111213141516171819
  1. <?php
  2. use Illuminate\Database\Seeder;
  3. class WaybillFinancialSnapshotsSeeder extends Seeder
  4. {
  5. /**
  6. * Run the database seeds.
  7. *
  8. * @return void
  9. */
  10. public function run()
  11. {
  12. \App\WaybillFinancialSnapshot::create([
  13. 'waybill_id'=>1,
  14. 'json_content'=>'{a:1}'
  15. ]);
  16. }
  17. }