restore composer.json, add mysqli extension

This commit is contained in:
2026-04-15 17:02:52 +05:00
commit 77cf56a348
4317 changed files with 1397107 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<?php
namespace Database\Seeders;
use App\Models\Staff;
use Illuminate\Database\Seeder;
class StaffsTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Staff::create([
'username' => 'ulasoft-admin',
// 'email' => 'ulasoft@mail.ru',
'password' => 'qwerty56',
'role_id' => 1
]);
Staff::create([
'username' => 'content-moderator',
// 'email' => 'admin@mail.ru',
'password' => 'qwerty56',
'role_id' => 3
]);
Staff::create([
'username' => 'moderator',
// 'email' => 'admin@mail.ru',
'password' => 'qwerty56',
'role_id' => 4
]);
}
}