Cleanup
This commit is contained in:
parent
bc99dd6f32
commit
9180a445b8
2 changed files with 0 additions and 25 deletions
|
@ -1,25 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class UserSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
User::create([
|
||||
'name' => 'admin',
|
||||
'pterodactyl_id' => 1,
|
||||
'role' => 'admin',
|
||||
'email' => 'admin@admin.com',
|
||||
'password' => bcrypt('admin')
|
||||
]);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue