Files
roxane/database/seeders/UserSeeder.php
Nebulae 2e44eed699
Some checks failed
Deploy Roxane to Preprod / deploy (push) Failing after 26h12m0s
fix and feat( Fix Synchro pages and tailwind/filament issues, clean read me, fix translations and seeders
2026-04-06 12:41:36 +02:00

22 lines
430 B
PHP

<?php
namespace Database\Seeders;
use App\Models\User;
use Illuminate\Database\Seeder;
class UserSeeder extends Seeder
{
public function run(): void
{
User::updateOrCreate(
['email' => 'contact@nebulae-design.com'],
[
'name' => 'SuperAdmin',
'email_verified_at' => now(),
'password' => bcrypt('password'),
]
);
}
}