Updated admin password
Some checks failed
Gemini PR Review / Gemini PR Review (pull_request) Waiting to run
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Waiting to run
Laravel Larastan / larastan (pull_request) Waiting to run
Laravel Pint / pint (pull_request) Waiting to run
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Some checks failed
Gemini PR Review / Gemini PR Review (pull_request) Waiting to run
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Waiting to run
Laravel Larastan / larastan (pull_request) Waiting to run
Laravel Pint / pint (pull_request) Waiting to run
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
This commit is contained in:
@@ -13,7 +13,7 @@ class AdminSeeder extends Seeder
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
//updateOrCreate
|
||||
// updateOrCreate
|
||||
$user1 = User::updateOrCreate(
|
||||
// Unique identifier
|
||||
['email' => 'admin@cripumps.com'],
|
||||
@@ -21,9 +21,9 @@ class AdminSeeder extends Seeder
|
||||
// Data to update/create
|
||||
[
|
||||
'name' => 'Admin',
|
||||
'password' => Hash::make('jOtHi$9000'),
|
||||
'password' => Hash::make('jOtHi#9000'),
|
||||
'updated_at' => now(),
|
||||
'created_at' => now()
|
||||
'created_at' => now(),
|
||||
]
|
||||
);
|
||||
// $user1 = User::firstOrCreate([
|
||||
|
||||
Reference in New Issue
Block a user