initial commit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
*.sqlite*
|
||||
@@ -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']),
|
||||
];
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
]);
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('user_role');
|
||||
$table->string('username')->unique();
|
||||
$table->string('password');
|
||||
$table->string('name');
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('telepon');
|
||||
$table->string('alamat');
|
||||
$table->string('gender');
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
Schema::create('password_reset_tokens', function (Blueprint $table) {
|
||||
$table->string('email')->primary();
|
||||
$table->string('token');
|
||||
$table->timestamp('created_at')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('sessions', function (Blueprint $table) {
|
||||
$table->string('id')->primary();
|
||||
$table->foreignId('user_id')->nullable()->index();
|
||||
$table->string('ip_address', 45)->nullable();
|
||||
$table->text('user_agent')->nullable();
|
||||
$table->longText('payload');
|
||||
$table->integer('last_activity')->index();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('users');
|
||||
Schema::dropIfExists('password_reset_tokens');
|
||||
Schema::dropIfExists('sessions');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('cache', function (Blueprint $table) {
|
||||
$table->string('key')->primary();
|
||||
$table->mediumText('value');
|
||||
$table->integer('expiration');
|
||||
});
|
||||
|
||||
Schema::create('cache_locks', function (Blueprint $table) {
|
||||
$table->string('key')->primary();
|
||||
$table->string('owner');
|
||||
$table->integer('expiration');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('cache');
|
||||
Schema::dropIfExists('cache_locks');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('jobs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('queue')->index();
|
||||
$table->longText('payload');
|
||||
$table->unsignedTinyInteger('attempts');
|
||||
$table->unsignedInteger('reserved_at')->nullable();
|
||||
$table->unsignedInteger('available_at');
|
||||
$table->unsignedInteger('created_at');
|
||||
});
|
||||
|
||||
Schema::create('job_batches', function (Blueprint $table) {
|
||||
$table->string('id')->primary();
|
||||
$table->string('name');
|
||||
$table->integer('total_jobs');
|
||||
$table->integer('pending_jobs');
|
||||
$table->integer('failed_jobs');
|
||||
$table->longText('failed_job_ids');
|
||||
$table->mediumText('options')->nullable();
|
||||
$table->integer('cancelled_at')->nullable();
|
||||
$table->integer('created_at');
|
||||
$table->integer('finished_at')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('failed_jobs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('uuid')->unique();
|
||||
$table->text('connection');
|
||||
$table->text('queue');
|
||||
$table->longText('payload');
|
||||
$table->longText('exception');
|
||||
$table->timestamp('failed_at')->useCurrent();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('jobs');
|
||||
Schema::dropIfExists('job_batches');
|
||||
Schema::dropIfExists('failed_jobs');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('health_datas', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('users_id')->constrained('users')->onDelete('cascade');
|
||||
$table->date('birthdate');
|
||||
$table->float('weight');
|
||||
$table->float('height');
|
||||
$table->integer('sleeptime');
|
||||
$table->string('disease');
|
||||
$table->string('food');
|
||||
$table->string('alergi_makanan');
|
||||
$table->string('obesity_status')->nullable();
|
||||
$table->integer('calorie_recommendation')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('health_datas');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('physical_activities', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('users_id')->constrained('users')->onDelete('cascade');
|
||||
$table->timestamp('date');
|
||||
$table->string('type');
|
||||
$table->decimal('distance', 8, 2);
|
||||
$table->integer('duration');
|
||||
$table->decimal('avg_speed', 8, 2);
|
||||
$table->integer('avg_steps');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('physical_activities');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class AddActiveStatusToUsers extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
// if not exist, add the new column
|
||||
if (!Schema::hasColumn('users', 'active_status')) {
|
||||
$table->boolean('active_status')->default(0);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->dropColumn('active_status');
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class AddAvatarToUsers extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
// if not exist, add the new column
|
||||
if (!Schema::hasColumn('users', 'avatar')) {
|
||||
$table->string('avatar')->default(config('chatify.user_avatar.default'));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->dropColumn('avatar');
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class AddDarkModeToUsers extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
// if not exist, add the new column
|
||||
if (!Schema::hasColumn('users', 'dark_mode')) {
|
||||
$table->boolean('dark_mode')->default(0);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->dropColumn('dark_mode');
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class AddMessengerColorToUsers extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
if (!Schema::hasColumn('users', 'messenger_color')) {
|
||||
$table->string('messenger_color')->nullable();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
$table->dropColumn('messenger_color');
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateChatifyFavoritesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('ch_favorites', function (Blueprint $table) {
|
||||
$table->uuid('id')->primary();
|
||||
$table->bigInteger('user_id');
|
||||
$table->bigInteger('favorite_id');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('ch_favorites');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class CreateChatifyMessagesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('ch_messages', function (Blueprint $table) {
|
||||
$table->uuid('id')->primary();
|
||||
$table->bigInteger('from_id');
|
||||
$table->bigInteger('to_id');
|
||||
$table->string('body',5000)->nullable();
|
||||
$table->string('attachment')->nullable();
|
||||
$table->boolean('seen')->default(false);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('ch_messages');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('consultations', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->unsignedBigInteger('patient_id');
|
||||
$table->unsignedBigInteger('doctor_id');
|
||||
$table->date('consultation_date');
|
||||
$table->time('consultation_time');
|
||||
$table->string('location');
|
||||
$table->string('consultation_status')->default('pending');
|
||||
$table->timestamps();
|
||||
|
||||
$table->foreign('patient_id')->references('id')->on('users')->onDelete('cascade');
|
||||
$table->foreign('doctor_id')->references('id')->on('users')->onDelete('cascade');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('consultations');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('notifications', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->unsignedBigInteger('user_id');
|
||||
$table->unsignedBigInteger('consultation_id');
|
||||
$table->string('message');
|
||||
$table->boolean('is_read')->default(false);
|
||||
$table->timestamps();
|
||||
|
||||
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||||
$table->foreign('consultation_id')->references('id')->on('consultations')->onDelete('cascade');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('notifications');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('result', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->unsignedBigInteger('patient_id');
|
||||
$table->unsignedBigInteger('doctor_id');
|
||||
$table->unsignedBigInteger('consultation_id')->nullable();
|
||||
$table->integer('jarak_lari');
|
||||
$table->float('sleeptime');
|
||||
$table->string('food');
|
||||
$table->string('unrecommended_food');
|
||||
$table->text('notes');
|
||||
$table->timestamps();
|
||||
|
||||
$table->foreign('patient_id')->references('id')->on('users')->onDelete('cascade');
|
||||
$table->foreign('doctor_id')->references('id')->on('users')->onDelete('cascade');
|
||||
$table->foreign('consultation_id')->references('id')->on('consultations')->onDelete('set null');
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('result');
|
||||
}
|
||||
};
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class ConsultationSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
\App\Models\Consultation::factory()->count(15)->create();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\User;
|
||||
use App\Models\Consultation;
|
||||
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
User::factory()->count(2)->create([
|
||||
'user_role' => 'user',
|
||||
]);
|
||||
|
||||
User::factory()->count(1)->create([
|
||||
'user_role' => 'doctor',
|
||||
]);
|
||||
|
||||
User::factory()->count(1)->create([
|
||||
'user_role' => 'admin',
|
||||
]);
|
||||
|
||||
$this->call([
|
||||
ConsultationSeeder::class,
|
||||
]);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
use App\Models\User;
|
||||
use Database\Factories\UserFactory;
|
||||
|
||||
class UserSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
UserFactory::new()->count(10)->create();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,756 @@
|
||||
[22-Jun-2024 22:33:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[22-Jun-2024 22:34:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[22-Jun-2024 22:34:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[22-Jun-2024 22:35:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[22-Jun-2024 22:35:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[22-Jun-2024 22:35:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[25-Jun-2024 09:06:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[25-Jun-2024 09:06:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[25-Jun-2024 09:07:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[26-Jun-2024 08:54:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[26-Jun-2024 11:49:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[26-Jun-2024 11:49:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[01-Jul-2024 11:13:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[03-Jul-2024 08:09:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[03-Jul-2024 08:10:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[06-Jul-2024 19:16:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[06-Jul-2024 19:17:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[03-Aug-2024 00:41:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[03-Aug-2024 00:41:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[03-Aug-2024 00:41:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[03-Aug-2024 00:42:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[03-Aug-2024 00:42:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[03-Aug-2024 00:42:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[17-Aug-2024 16:17:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[17-Aug-2024 16:17:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[17-Aug-2024 16:18:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[29-Aug-2024 06:05:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[29-Aug-2024 12:21:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[29-Aug-2024 17:40:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[29-Sep-2024 03:43:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[30-Sep-2024 03:03:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[03-Oct-2024 18:44:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[03-Oct-2024 22:51:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[06-Oct-2024 15:39:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[07-Oct-2024 15:13:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[08-Oct-2024 20:12:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[08-Oct-2024 20:13:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[20-Oct-2024 22:34:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[21-Oct-2024 02:30:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[21-Oct-2024 02:31:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[22-Oct-2024 22:53:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[23-Oct-2024 02:34:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[23-Oct-2024 02:34:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[07-Nov-2024 00:55:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[07-Nov-2024 11:09:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[15-Nov-2024 20:15:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[22-Nov-2024 21:49:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[22-Nov-2024 21:49:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[22-Nov-2024 21:49:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[06-Dec-2024 22:50:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[07-Dec-2024 03:48:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[08-Dec-2024 08:54:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[20-Dec-2024 07:31:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[28-Dec-2024 22:21:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[30-Dec-2024 02:29:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[31-Dec-2024 02:28:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[01-Jan-2025 02:28:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[04-Jan-2025 00:00:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[06-Jan-2025 05:34:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[09-Jan-2025 02:31:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[09-Jan-2025 05:57:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[10-Jan-2025 18:22:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[10-Jan-2025 18:22:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[20-Jan-2025 04:38:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[28-Jan-2025 09:54:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[05-Feb-2025 19:23:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[10-Feb-2025 11:03:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[19-Feb-2025 07:43:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[11-Mar-2025 21:02:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[25-Mar-2025 12:14:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[25-Mar-2025 21:02:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[28-Mar-2025 12:23:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[28-Mar-2025 16:18:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[29-Mar-2025 00:39:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[04-Apr-2025 04:20:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[16-Apr-2025 10:15:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[16-Apr-2025 10:15:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[28-Apr-2025 00:57:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[28-Apr-2025 07:09:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[30-Apr-2025 18:07:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[01-May-2025 20:00:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[25-May-2025 19:15:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[29-May-2025 14:15:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[31-May-2025 08:04:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[09-Jun-2025 18:47:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[23-Jun-2025 00:26:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[28-Jun-2025 11:41:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[28-Jun-2025 18:34:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[24-Jul-2025 13:52:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[26-Jul-2025 16:27:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[26-Jul-2025 16:28:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[23-Aug-2025 22:07:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[27-Aug-2025 04:53:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[27-Aug-2025 04:54:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[27-Aug-2025 04:54:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[14-Sep-2025 06:19:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[16-Sep-2025 02:22:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[16-Sep-2025 02:25:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[16-Sep-2025 02:32:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[17-Sep-2025 04:41:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[17-Sep-2025 04:45:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[17-Sep-2025 04:49:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[18-Sep-2025 13:39:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[19-Sep-2025 03:20:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[19-Sep-2025 05:49:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[19-Sep-2025 07:56:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[24-Sep-2025 16:56:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[24-Oct-2025 03:48:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[24-Oct-2025 03:59:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[24-Oct-2025 05:43:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[29-Oct-2025 15:50:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[14-Nov-2025 22:12:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[16-Nov-2025 06:28:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[24-Nov-2025 03:18:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[24-Nov-2025 04:57:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[24-Nov-2025 06:40:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[26-Dec-2025 02:51:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[26-Dec-2025 02:51:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[08-Jan-2026 04:03:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[08-Jan-2026 15:26:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[08-Jan-2026 16:07:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[09-Jan-2026 10:13:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[11-Jan-2026 06:53:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[11-Jan-2026 09:41:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[11-Jan-2026 09:45:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[12-Jan-2026 20:41:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[13-Jan-2026 08:56:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[13-Jan-2026 09:00:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[14-Jan-2026 15:26:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[14-Jan-2026 21:24:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[15-Jan-2026 21:09:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[16-Jan-2026 08:54:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[16-Jan-2026 09:01:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[17-Jan-2026 08:11:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[17-Jan-2026 08:30:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[17-Jan-2026 12:20:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[17-Jan-2026 12:20:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[17-Jan-2026 12:20:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[17-Jan-2026 20:52:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[18-Jan-2026 03:18:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[18-Jan-2026 03:18:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[18-Jan-2026 03:18:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[18-Jan-2026 08:53:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[18-Jan-2026 23:07:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[18-Jan-2026 23:07:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[19-Jan-2026 08:12:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[19-Jan-2026 20:32:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[21-Jan-2026 08:20:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[21-Jan-2026 09:01:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[21-Jan-2026 21:18:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[23-Jan-2026 04:57:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[23-Jan-2026 09:09:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[23-Jan-2026 21:14:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[25-Jan-2026 09:25:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[25-Jan-2026 22:01:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[27-Jan-2026 08:50:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[27-Jan-2026 09:37:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[27-Jan-2026 09:59:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[27-Jan-2026 19:29:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[27-Jan-2026 20:12:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[31-Jan-2026 08:20:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[02-Feb-2026 08:42:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[02-Feb-2026 17:42:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[04-Feb-2026 09:00:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[04-Feb-2026 21:49:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[06-Feb-2026 09:20:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[07-Feb-2026 03:22:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[19-Feb-2026 04:05:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[23-Feb-2026 18:52:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[24-Feb-2026 02:29:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[27-Feb-2026 02:52:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[11-Mar-2026 21:18:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[19-Mar-2026 18:38:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[24-Mar-2026 07:43:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[24-Mar-2026 17:39:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[26-Mar-2026 04:54:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[26-Mar-2026 21:12:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[28-Mar-2026 01:58:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[30-Mar-2026 05:17:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[30-Mar-2026 05:17:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[30-Mar-2026 05:17:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[31-Mar-2026 04:15:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
[31-Mar-2026 08:58:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[03-Apr-2026 18:02:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[03-Apr-2026 18:02:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/DatabaseSeeder.php on line 10
|
||||
[20-Apr-2026 07:17:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[20-Apr-2026 07:17:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[12-May-2026 05:52:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php:8
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/ConsultationSeeder.php on line 8
|
||||
[12-May-2026 06:29:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Seeder" not found in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php:10
|
||||
Stack trace:
|
||||
#0 {main}
|
||||
thrown in /home/humicpro/public_html/aigo/database/seeders/UserSeeder.php on line 10
|
||||
Reference in New Issue
Block a user