@tykus
Ok..... I added a log to my UserFactory and can see that it's stuck in an infinite loop. Here is what that looks like.
No idea why this is looping
<?php
declare(strict_types=1);
namespace Database\Factories;
use App\User;
use Illuminate\Support\Str;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends Factory<\App\User>
*/
final class UserFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = User::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition(): array
{
return [
'fname' => $this->faker->word,
'sname' => $this->faker->word,
'email' => $this->faker->safeEmail,
'password' => bcrypt($this->faker->password),
'bio' => $this->faker->text,
'picsource' => $this->faker->word,
'country' => $this->faker->country,
'isAdmin' => $this->faker->boolean,
'status' => $this->faker->randomNumber(),
'trialExpiry' => $this->faker->dateTime(),
'env' => $this->faker->word,
'accountVerificationToken' => $this->faker->word,
'accountConfirmed' => $this->faker->randomNumber(),
'remember_token' => Str::random(10),
'stripe_id' => $this->faker->word,
'card_brand' => $this->faker->word,
'card_last_four' => $this->faker->word,
'trial_ends_at' => $this->faker->dateTime(),
'phoneNumber' => $this->faker->word,
'pin' => $this->faker->word,
'smsVerified' => $this->faker->randomNumber(),
'currency' => $this->faker->currencyCode,
'udid' => $this->faker->word,
'ARN' => $this->faker->word,
'username' => $this->faker->userName,
'publicSongboxId' => $this->faker->randomNumber(),
'url' => $this->faker->url,
'membertype' => $this->faker->word,
'sms_active' => $this->faker->randomNumber(),
'traffic_source' => $this->faker->word,
'artist_name' => $this->faker->word,
'name' => $this->faker->name,
'submissions' => $this->faker->randomNumber(),
'timezone' => $this->faker->word,
'referral_code' => $this->faker->word,
'referee_code' => \App\User::factory(),
'on_trial' => $this->faker->randomNumber(),
'web_link' => $this->faker->word,
'twitter' => $this->faker->word,
'instagram' => $this->faker->word,
'facebook' => $this->faker->word,
'contact_email' => $this->faker->word,
];
}
}