Advertisement
tanyaaja

PemasukanSeeder

Dec 26th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. use Illuminate\Database\Seeder;
  4. use Illuminate\Support\Facades\DB;
  5.  
  6. class PemasukanSeeder extends Seeder
  7. {
  8. /**
  9. * Run the database seeds.
  10. *
  11. * @return void
  12. */
  13. public function run()
  14. {
  15. DB::table('pemasukans')-insert([
  16. 'jumlah' => "800000",
  17. ],
  18. [
  19. 'jumlah' => "120000",
  20. ],
  21. [
  22. 'jumlah' => "56000",
  23. ]);
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement