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

This commit is contained in:
2026-04-06 12:41:36 +02:00
parent 25885e3b70
commit 2e44eed699
19 changed files with 1359 additions and 277 deletions

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