SystemTableSeeder.php 407 B

1234567891011121314151617181920
  1. <?php
  2. use Illuminate\Database\Seeder;
  3. class SystemTableSeeder extends Seeder
  4. {
  5. /**
  6. * Run the database seeds.
  7. *
  8. * @return void
  9. */
  10. public function run()
  11. {
  12. $systems = [
  13. ['key' => 'blog_name', 'value' => 'Moell Blog'],
  14. ['key' => 'motto', '欢迎使用Moell Blog,欢迎Star。']
  15. ];
  16. DB::table('systems')->insert($systems);
  17. }
  18. }