initial commit

This commit is contained in:
2026-06-04 20:58:26 +07:00
commit c524e239ea
250 changed files with 47282 additions and 0 deletions
@@ -0,0 +1,43 @@
<?php
namespace Database\Factories;
use App\Models\Consultation;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Consultation>
*/
class ConsultationFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Consultation::class;
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
// Get a random patient from the users table
$patient = User::where('user_role', 'user')->inRandomOrder()->first();
// Get a random doctor from the users table
$doctor = User::where('user_role', 'doctor')->inRandomOrder()->first();
return [
'patient_id' => $patient->id,
'doctor_id' => $doctor->id,
'consultation_date' => $this->faker->dateTimeBetween('-1 year', '+1 year')->format('Y-m-d'),
'consultation_time' => $this->faker->time('H:i:s'),
'location' => $this->faker->city,
'consultation_status' => $this->faker->randomElement(['pending', 'declined', 'approved', 'finished']),
];
}
}
+51
View File
@@ -0,0 +1,51 @@
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
use App\Models\User;
use Faker\Factory as FakerFactory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
*/
class UserFactory extends Factory
{
/**
* The current password being used by the factory.
*/
protected static ?string $password;
protected $model = User::class;
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
$faker = FakerFactory::create('en_US');
return [
'user_role' => $faker->randomElement(['admin', 'user', 'doctor']),
'username' => $faker->userName,
'password' => Hash::make('password'),
'name' => $faker->name,
'email' => $faker->unique()->safeEmail,
'telepon' => $faker->phoneNumber,
'alamat' => $faker->address,
'gender' => $faker->randomElement(['male', 'female']),
];
}
/**
* Indicate that the model's email address should be unverified.
*/
public function unverified(): static
{
return $this->state(fn (array $attributes) => [
'email_verified_at' => null,
]);
}
}
+552
View File
@@ -0,0 +1,552 @@
[22-Jun-2024 22:02:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[22-Jun-2024 22:15:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[22-Jun-2024 22:33:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[22-Jun-2024 22:33:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[25-Jun-2024 06:38:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[25-Jun-2024 06:38:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[26-Jun-2024 08:53:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[26-Jun-2024 11:38:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[28-Jun-2024 23:21:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[29-Jun-2024 12:34:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[29-Jun-2024 19:12:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[01-Jul-2024 19:01:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[01-Jul-2024 23:41:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[02-Jul-2024 17:39:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[03-Jul-2024 19:10:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[31-Jul-2024 08:45:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[03-Aug-2024 00:41:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[03-Aug-2024 00:41:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[03-Aug-2024 00:41:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[03-Aug-2024 00:41:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[04-Aug-2024 17:16:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[06-Aug-2024 20:45:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[08-Aug-2024 23:27:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[13-Aug-2024 02:34:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[17-Aug-2024 16:16:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[17-Aug-2024 16:16:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[29-Aug-2024 05:50:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[29-Aug-2024 15:36:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[03-Oct-2024 09:19:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[03-Oct-2024 10:11:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[03-Oct-2024 19:16:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[04-Oct-2024 01:03:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[04-Oct-2024 07:25:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[15-Oct-2024 00:19:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[07-Nov-2024 01:18:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[07-Nov-2024 02:46:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[22-Nov-2024 21:48:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[22-Nov-2024 21:48:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[06-Dec-2024 22:51:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[07-Dec-2024 08:41:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[08-Dec-2024 04:20:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[06-Jan-2025 19:58:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[09-Jan-2025 06:11:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[09-Jan-2025 10:01:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[09-Jan-2025 10:06:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[12-Jan-2025 12:23:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[10-Feb-2025 18:51:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[10-Feb-2025 19:54:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[14-Mar-2025 17:24:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[15-Mar-2025 06:12:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[28-Mar-2025 07:23:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[28-Mar-2025 09:42:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[19-Apr-2025 03:52:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[22-Apr-2025 07:26:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[22-Apr-2025 12:07:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[24-Apr-2025 20:31:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[25-May-2025 19:00:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[26-May-2025 00:59:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[28-Jun-2025 12:32:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[28-Jun-2025 13:09:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[29-Jul-2025 09:43:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[28-Aug-2025 04:18:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[28-Aug-2025 04:20:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[16-Sep-2025 02:59:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[17-Sep-2025 04:37:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[17-Sep-2025 04:53:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[17-Sep-2025 04:57:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[19-Sep-2025 04:18:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[19-Sep-2025 14:47:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[25-Sep-2025 09:56:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[03-Oct-2025 05:24:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[03-Oct-2025 05:25:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[24-Oct-2025 08:19:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[24-Oct-2025 08:56:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[12-Nov-2025 14:48:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[13-Nov-2025 20:03:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[23-Nov-2025 22:52:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[24-Nov-2025 05:17:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[08-Jan-2026 05:40:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[09-Jan-2026 18:38:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[11-Jan-2026 21:50:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[11-Jan-2026 23:02:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[13-Jan-2026 21:11:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[14-Jan-2026 02:32:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[15-Jan-2026 21:51:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[16-Jan-2026 02:10:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[17-Jan-2026 21:33:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[18-Jan-2026 02:22:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[19-Jan-2026 22:02:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[20-Jan-2026 02:50:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[21-Jan-2026 01:27:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[21-Jan-2026 01:27:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[21-Jan-2026 01:27:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[21-Jan-2026 10:00:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[21-Jan-2026 10:00:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[21-Jan-2026 10:00:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[22-Jan-2026 02:31:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[24-Jan-2026 03:04:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[26-Jan-2026 03:32:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[28-Jan-2026 02:30:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[30-Jan-2026 10:12:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[30-Jan-2026 19:27:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[31-Jan-2026 04:43:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[03-Feb-2026 00:21:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[05-Feb-2026 04:58:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[07-Feb-2026 10:03:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[11-Feb-2026 09:32:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[13-Feb-2026 09:42:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[15-Feb-2026 10:05:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[17-Feb-2026 06:24:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[21-Feb-2026 06:24:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[23-Feb-2026 06:39:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[27-Feb-2026 06:46:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[01-Mar-2026 01:30:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[01-Mar-2026 07:22:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[03-Mar-2026 08:15:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[05-Mar-2026 01:03:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[05-Mar-2026 09:46:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[09-Mar-2026 10:20:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[13-Mar-2026 11:20:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[15-Mar-2026 08:24:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[17-Mar-2026 08:19:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[20-Mar-2026 09:32:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[21-Mar-2026 00:16:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[21-Mar-2026 09:28:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[21-Mar-2026 09:54:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[21-Mar-2026 20:57:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[24-Mar-2026 05:21:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[26-Mar-2026 18:36:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[31-Mar-2026 16:15:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[06-Apr-2026 01:34:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[10-Apr-2026 10:55:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[10-Apr-2026 10:55:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[10-Apr-2026 10:55:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[18-Apr-2026 07:24:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[18-Apr-2026 07:24:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14
[30-Apr-2026 05:30:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php:12
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/ConsultationFactory.php on line 12
[06-May-2026 05:26:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Factories\Factory" not found in /home/humicpro/public_html/aigo/database/factories/UserFactory.php:14
Stack trace:
#0 {main}
thrown in /home/humicpro/public_html/aigo/database/factories/UserFactory.php on line 14