fix and feat( Fix Synchro pages and tailwind/filament issues, clean read me, fix translations and seeders
Some checks failed
Deploy Roxane to Preprod / deploy (push) Failing after 26h12m0s
Some checks failed
Deploy Roxane to Preprod / deploy (push) Failing after 26h12m0s
This commit is contained in:
21
database/seeders/UserSeeder.php
Normal file
21
database/seeders/UserSeeder.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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'),
|
||||
]
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user