feat: Socket Support and Event Examples

This commit is contained in:
2023-11-10 18:07:55 +01:00
parent ce6405cb8a
commit eac670642a
14 changed files with 754 additions and 16 deletions

View File

@@ -2,6 +2,7 @@
namespace Database\Factories;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
@@ -13,6 +14,8 @@ class UserFactory extends Factory
{
protected static ?string $password;
protected $model = User::class;
/**
* Define the model's default state.
*