1
0
Fork 0
wow-raid-bingo/database/seeders/ProductionSeeder.php

34 lines
874 B
PHP

<?php
namespace Database\Seeders;
use App\Models\Admin;
use Illuminate\Database\Seeder;
class ProductionSeeder extends Seeder
{
/**
* Seed the application's database with production data.
*
* @return void
*/
public function run()
{
$this->call(WrathRaidSeeder::class);
// Create admins :)
Admin::create([
'username' => 'pnx',
'password' => '$2y$10$GAxLXYfWSVnlZmeJxxGPauTDxXdv9k7hgVDPGttb0sT0q6ndFvg/O',
'created_at' => '2021-11-14 14:24:42',
'updated_at' => '2021-11-14 14:24:42'
]);
Admin::create([
'username' => 'sweetie',
'password' => '$2y$10$yNYLUIXHB8QwNRwW96JFBuoK78vCbTuXcG0WR8BJl029d5A7wpx7u',
'created_at' => '2022-01-09 16:30:33',
'updated_at' => '2022-01-09 16:30:33'
]);
}
}