This commit is contained in:
AVMG20 2021-06-06 22:53:23 +02:00
parent bc99dd6f32
commit 9180a445b8
2 changed files with 0 additions and 25 deletions

View file

@ -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')
]);
}
}