text4u
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.

AdminSeeder.php 424B

1234567891011121314151617181920
  1. <?php
  2. namespace Database\Seeders;
  3. use Illuminate\Database\Seeder;
  4. use Illuminate\Support\Facades\Hash;
  5. use Illuminate\Support\Facades\DB;
  6. class AdminSeeder extends Seeder
  7. {
  8. public function run()
  9. {
  10. DB::table('users')->insert([
  11. 'name' => 'Admin',
  12. 'email' => 'tech@mirfalah.my',
  13. 'password' => Hash::make('M!rf@lah123'),
  14. 'is_admin' => true,
  15. ]);
  16. }
  17. }