commit c524e239eaee14be882de07304fb5cbf0049f75c Author: sulthan Date: Thu Jun 4 20:58:26 2026 +0700 initial commit diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..0ad308f --- /dev/null +++ b/.dockerignore @@ -0,0 +1,13 @@ +.git +.gitattributes +.gitignore +.env +node_modules +vendor +storage/framework/cache/data +storage/logs +*.md +.phpunit.result.cache +.vite +.ftpquota +public/build diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8f0de65 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[docker-compose.yml] +indent_size = 4 diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..a3df402 --- /dev/null +++ b/.env.example @@ -0,0 +1,72 @@ +APP_NAME=Aigo +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_TIMEZONE=UTC +APP_URL=http://localhost + +APP_LOCALE=en +APP_FALLBACK_LOCALE=en +APP_FAKER_LOCALE=en_US + +APP_MAINTENANCE_DRIVER=file +APP_MAINTENANCE_STORE=database + +BCRYPT_ROUNDS=12 + +LOG_CHANNEL=stack +LOG_STACK=single +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=aigo +DB_USERNAME=root +DB_PASSWORD= + +SESSION_DRIVER=database +SESSION_LIFETIME=120 +SESSION_ENCRYPT=false +SESSION_PATH=/ +SESSION_DOMAIN=null + +BROADCAST_CONNECTION=pusher +FILESYSTEM_DISK=local +QUEUE_CONNECTION=database + +CACHE_STORE=database +CACHE_PREFIX= + +MEMCACHED_HOST=127.0.0.1 + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= + +REDIS_CLIENT=phpredis +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=log +MAIL_HOST=127.0.0.1 +MAIL_PORT=2525 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + +VITE_APP_NAME="${APP_NAME}" + +STRAVA_CLIENT_ID= +STRAVA_CLIENT_SECRET= +STRAVA_REDIRECT_URI= \ No newline at end of file diff --git a/.ftpquota b/.ftpquota new file mode 100644 index 0000000..44fa245 --- /dev/null +++ b/.ftpquota @@ -0,0 +1 @@ +21796 326882934 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fcb21d3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +* text=auto eol=lf + +*.blade.php diff=html +*.css diff=css +*.html diff=html +*.md diff=markdown +*.php diff=php + +/.github export-ignore +CHANGELOG.md export-ignore +.styleci.yml export-ignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..297959a --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +/vendor/ +node_modules/ +npm-debug.log +yarn-error.log + +# Laravel 4 specific +bootstrap/compiled.php +app/storage/ + +# Laravel 5 & Lumen specific +public/storage +public/hot + +# Laravel 5 & Lumen specific with changed public path +public_html/storage +public_html/hot + +storage/*.key +.env +Homestead.yaml +Homestead.json +/.vagrant +.phpunit.result.cache diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..8130b98 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,19 @@ +## Our Responsibilities + +To provide you with the most personalized experience possible, AIGO offers features that connect with your [**Strava account**](https://support.strava.com/hc/en-us/articles/360018969732-App-Authorization-Settings). We understand data privacy is important, and we want to assure you that your information is secure. + +- By authorizing your [**Strava account**](https://support.strava.com/hc/en-us/articles/360018969732-App-Authorization-Settings), you're enabling us to provide you a personalized experience while ensuring the security and protection of your data. +- We only access data relevant to your AIGO experience. +- We're committed to transparency in how we handle your data, and we will never misuse or share it without your explicit consent. + +Your trust is paramount to us, and we're dedicated to upholding the highest standards of data privacy and security in everything we do. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported . All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a8107eb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,33 @@ +FROM composer:2 AS composer +WORKDIR /app +COPY composer.json composer.lock ./ +RUN composer install --no-dev --optimize-autoloader --no-scripts + +FROM node:20-alpine AS node +WORKDIR /app +COPY package.json package-lock.json vite.config.js tailwind.config.js postcss.config.js ./ +COPY resources/ ./resources/ +RUN npm ci && npm run build + +FROM php:8.2-fpm-alpine +WORKDIR /var/www/html + +RUN docker-php-ext-install -j$(nproc) pdo_mysql + +RUN apk add --no-cache mariadb-client + +COPY php.ini /usr/local/etc/php/conf.d/99-overrides.ini +COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh +RUN chmod +x /usr/local/bin/docker-entrypoint.sh + +COPY --from=composer /app/vendor ./vendor +COPY --from=node /app/public/build ./public/build + +COPY --chown=www-data:www-data . . + +RUN mkdir -p storage/logs storage/framework/cache/data && \ + chown -R www-data:www-data storage bootstrap/cache + +USER www-data + +ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4c0d268 --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +The MIT License + +Copyright (c) 2012 Cloud9 IDE, Inc. (Mike de Boer) +Copyright (c) 2017-2018 Octokit contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..1205805 --- /dev/null +++ b/README.md @@ -0,0 +1,76 @@ +

AIGO Logo

+ +

+Build Status +Total Downloads +Latest Stable Version +License +

+ +

+ Overview • + Features • + Getting Started • + Requirements • + Contributors • + License +

+ +## Overview + +![Aigo Web](public/asset/png/web.png) + +AIGO is an AI-powered guidance system designed to assist in the management of obesity. This innovative platform leverages the power of Internet of Things (IoT) devices, specifically smartwatches, to gain valuable insights into your daily activities. Aigo provides personalized recommendations for weight management, nutrition, and exercise. + +## Features + +Our platform offers a comprehensive suite of features designed to manage healthy lifestyle habits and effective weight management: + +- **Real-time Progress Monitoring:** Visualize your activity progress in real-time through intuitive dashboards and charts. + +- **IoT-Powered Health Tracking**: Monitor your daily activity, such as steps taken, distance traveled, and calories burned. + +- **Personalized Health Recommendation**: AIGO utilizes IoT devices (smartwatch) to monitor various lifestyle such as physical activity, eating habits, and sleep patterns. Users can receive recommendations by consulting a doctor by utilizing those data. + +## Requirements + +- **Internet Connection.** A stable internet connection is required to access our web platform and interact with our services seamlessly. +- **IoT Devices.** The types of IoT devices supported for monitoring physical activity are smartwatches and smartbands, such as Apple Watch, Mi Band, Amazfit, etc. _(Tested on Amazfit GTS 2e)_ +- **Strava Account.** To access our services, you'll need a Strava account for [authentication and authorization purposes](#data-privacy-and-security). + +## Getting Started + +To set up and utilize our platform, follow these steps: + +- Register an account and provide basic personal information. +- In order to use our services, you need to [Authorize Strava Account](https://support.strava.com/hc/en-us/articles/360018969732-App-Authorization-Settings) + +- Connect your IoT devices (smartwatch) to AIGO to start tracking key lifestyle metrics. + +- Track and Monitor your progress and visualize trends over time. + +- Access personalized recommendations based on your health data and activity progress + +## Contributors + +We appreciate the dedication and contributions of the following individuals to this project: + +| Name | Role | GitHub | +| ---------------------------- | -------------------------------------- | --------------------------------------------------------- | +| Rafidhia Haikal Pasya | Full-stack Developer & DevOps Engineer | [@W-zrd](https://github.com/W-zrd/) | +| Putu Vidya Ananda Ratmayanti | UI Designer & Front-end Developer | [@vidyaratmayantii](https://github.com/vidyaratmayantii/) | +| Muhammad Vikhan Muharram | AI Developer | [@vikhanmuhammad](https://github.com/vikhanmuhammad/) | +| Mohammad William | UI Designer | [@Vanillateaa](https://github.com/Vanillateaa/) | + +Contributions are welcome! Please fork the repository and submit a pull request with your changes. + +## Acknowledgements + +- AIGO was developed to address the growing need for personalized health management solutions. +- Special thanks to all contributors and open-source libraries used in the development of AIGO. + +--- + +> Aigo [aigo.w333zard.my.id](http://aigo.w333zard.my.id/)  ·  +> GitHub [@W-zrd](https://github.com/W-zrd)  ·  +> Medium [@w333zard](https://medium.com/@flxnzz_47) diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..3105980 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,13 @@ +# Security Policy + +If you discover a security issue, please bring it to our attention right away! + +## Reporting a Vulnerability + +Please **DO NOT** file a public issue to report a security vulberability, instead send your report privately to **rfdhaikal.wizz@proton.me**. This will help ensure that any vulnerabilities that are found can be [disclosed responsibly](https://en.wikipedia.org/wiki/Responsible_disclosure) to any affected parties. + +## Supported Versions + +Project versions that are currently being supported with security updates vary per project. +Please see specific project repositories for details. +If nothing is specified, only the latest major versions are supported. diff --git a/app/Http/Controllers/AdminController.php b/app/Http/Controllers/AdminController.php new file mode 100644 index 0000000..0bf343e --- /dev/null +++ b/app/Http/Controllers/AdminController.php @@ -0,0 +1,56 @@ +select('user_role', DB::raw('count(*) as count')) + ->get(); + + $doctorCount = User::where('user_role', 'doctor')->count(); + $patientCount = User::where('user_role', 'user')->count(); + $maleCount = User::where('user_role', 'user')->where('gender', 'Male')->count(); + $femaleCount = User::where('user_role', 'user')->where('gender', 'Female')->count(); + + $normalCount = HealthData::where('obesity_status', 'Normal')->count(); + $obesityCount = HealthData::where('obesity_status', 'Obesity')->count(); + + return view('dashboardAdmin', + compact('userRoleCounts', 'doctorCount', 'patientCount', 'maleCount', 'femaleCount', 'normalCount', 'obesityCount')); + } + + public function showDoctor(Request $request){ + return view('doctor-list', ["data" => User::where('user_role', 'doctor')->get()]); + } + + public function showPatient(Request $request) + { + $data = User::where('user_role', 'user')->get(); + return view('patient-list')->with('data', $data); + } + + public function showUserDetail($id){ + $data = User::find($id); + return view('update-user', compact('data')); + } + + public function updateData(Request $request, $id){ + $data = User::find($id); + $data -> update($request -> all()); + return redirect()->route('showPatient'); + } + + public function delete($id){ + $data = User::find($id); + $data -> delete(); + return redirect()->route('showPatient'); + } +} diff --git a/app/Http/Controllers/Api/HealthDataAPIController.php b/app/Http/Controllers/Api/HealthDataAPIController.php new file mode 100644 index 0000000..ec5277f --- /dev/null +++ b/app/Http/Controllers/Api/HealthDataAPIController.php @@ -0,0 +1,21 @@ +first(); + + if (!$healthData) { + return response()->json(['error' => 'Health data not found'], 404); + } + + return response()->json($healthData); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/Api/UserAPIController.php b/app/Http/Controllers/Api/UserAPIController.php new file mode 100644 index 0000000..7308f9d --- /dev/null +++ b/app/Http/Controllers/Api/UserAPIController.php @@ -0,0 +1,21 @@ +json(['error' => 'User not found'], 404); + } + + return response()->json($user); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/Api/error_log b/app/Http/Controllers/Api/error_log new file mode 100644 index 0000000..4b7e48a --- /dev/null +++ b/app/Http/Controllers/Api/error_log @@ -0,0 +1,312 @@ +[24-Jun-2024 00:58:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[24-Jun-2024 00:58:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[25-Jun-2024 21:05:17 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[25-Jun-2024 21:05:22 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[28-Jun-2024 13:47:16 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[28-Jun-2024 13:49:47 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[28-Jun-2024 20:04:18 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[28-Jun-2024 20:04:18 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[01-Jul-2024 08:58:43 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[01-Jul-2024 12:34:22 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[25-Jul-2024 20:53:54 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[26-Jul-2024 06:14:31 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[29-Jul-2024 00:28:09 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[03-Aug-2024 00:41:05 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[03-Aug-2024 00:41:05 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[03-Aug-2024 00:41:08 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[03-Aug-2024 00:41:09 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[07-Aug-2024 03:34:12 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[01-Sep-2024 06:49:35 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[01-Sep-2024 09:12:13 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[03-Oct-2024 17:53:03 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[04-Oct-2024 09:25:50 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[07-Nov-2024 11:30:10 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[07-Nov-2024 13:45:04 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[22-Nov-2024 21:48:24 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[22-Nov-2024 21:48:24 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[06-Dec-2024 23:20:32 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[07-Dec-2024 01:49:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[09-Jan-2025 03:27:03 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[09-Jan-2025 16:24:29 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[05-Feb-2025 18:38:31 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[09-Feb-2025 07:41:29 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[10-Feb-2025 19:48:23 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[12-Feb-2025 13:33:37 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[12-Feb-2025 13:35:22 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[15-Feb-2025 05:37:36 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[15-Feb-2025 05:39:10 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[09-Mar-2025 18:43:41 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[15-Mar-2025 02:07:32 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[11-Apr-2025 06:30:17 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[11-Apr-2025 10:19:31 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[30-Apr-2025 04:52:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[09-May-2025 07:16:24 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[09-May-2025 10:31:42 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[06-Jun-2025 04:13:53 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[06-Jun-2025 07:45:39 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[23-Jun-2025 11:18:37 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[10-Jul-2025 00:25:56 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[10-Jul-2025 04:06:06 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[07-Aug-2025 11:25:47 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[27-Aug-2025 05:10:07 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[27-Aug-2025 10:49:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[29-Aug-2025 16:04:36 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[29-Aug-2025 16:07:24 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[31-Aug-2025 00:07:23 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[10-Sep-2025 18:39:44 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[10-Sep-2025 20:43:48 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[03-Oct-2025 01:06:58 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[12-Oct-2025 12:05:13 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[12-Oct-2025 12:29:00 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[13-Nov-2025 02:19:36 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[13-Nov-2025 06:40:04 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[14-Nov-2025 13:43:15 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[15-Nov-2025 06:06:23 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[04-Jan-2026 23:49:09 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[08-Jan-2026 10:28:06 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[11-Jan-2026 22:27:07 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[14-Jan-2026 20:20:25 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[14-Jan-2026 20:24:49 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[12-Feb-2026 21:36:23 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[03-Mar-2026 18:25:51 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[04-Mar-2026 03:22:20 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[04-Mar-2026 03:25:20 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[17-Mar-2026 06:48:08 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[05-Apr-2026 16:47:07 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[13-Apr-2026 06:45:03 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 +[16-Apr-2026 09:36:54 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/UserAPIController.php on line 9 +[24-Apr-2026 14:03:35 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Api/HealthDataAPIController.php on line 9 diff --git a/app/Http/Controllers/Auth/AuthenticatedSessionController.php b/app/Http/Controllers/Auth/AuthenticatedSessionController.php new file mode 100644 index 0000000..ab3fb23 --- /dev/null +++ b/app/Http/Controllers/Auth/AuthenticatedSessionController.php @@ -0,0 +1,59 @@ +authenticate(); + $request->session()->regenerate(); + + $role = Auth::user()->user_role; + + if ($role == 'user') { + return redirect()->intended(route('dashboard')); + } else if ($role == 'doctor') { + // return redirect()->intended(route('doctor.dashboard')); + } else { + return redirect()->intended(route('admin.dashboard')); + } + } + + /** + * Destroy an authenticated session. + */ + public function destroy(Request $request): RedirectResponse + { + Auth::guard('web')->logout(); + + $request->session()->invalidate(); + + $request->session()->regenerateToken(); + + if ($request->session()->has('remember_token')) { + $request->session()->forget('remember_token'); + } + + return redirect('/'); + } +} diff --git a/app/Http/Controllers/Auth/ConfirmablePasswordController.php b/app/Http/Controllers/Auth/ConfirmablePasswordController.php new file mode 100644 index 0000000..712394a --- /dev/null +++ b/app/Http/Controllers/Auth/ConfirmablePasswordController.php @@ -0,0 +1,40 @@ +validate([ + 'email' => $request->user()->email, + 'password' => $request->password, + ])) { + throw ValidationException::withMessages([ + 'password' => __('auth.password'), + ]); + } + + $request->session()->put('auth.password_confirmed_at', time()); + + return redirect()->intended(route('dashboard', absolute: false)); + } +} diff --git a/app/Http/Controllers/Auth/EmailVerificationNotificationController.php b/app/Http/Controllers/Auth/EmailVerificationNotificationController.php new file mode 100644 index 0000000..f64fa9b --- /dev/null +++ b/app/Http/Controllers/Auth/EmailVerificationNotificationController.php @@ -0,0 +1,24 @@ +user()->hasVerifiedEmail()) { + return redirect()->intended(route('dashboard', absolute: false)); + } + + $request->user()->sendEmailVerificationNotification(); + + return back()->with('status', 'verification-link-sent'); + } +} diff --git a/app/Http/Controllers/Auth/EmailVerificationPromptController.php b/app/Http/Controllers/Auth/EmailVerificationPromptController.php new file mode 100644 index 0000000..ee3cb6f --- /dev/null +++ b/app/Http/Controllers/Auth/EmailVerificationPromptController.php @@ -0,0 +1,21 @@ +user()->hasVerifiedEmail() + ? redirect()->intended(route('dashboard', absolute: false)) + : view('auth.verify-email'); + } +} diff --git a/app/Http/Controllers/Auth/NewPasswordController.php b/app/Http/Controllers/Auth/NewPasswordController.php new file mode 100644 index 0000000..f1e2814 --- /dev/null +++ b/app/Http/Controllers/Auth/NewPasswordController.php @@ -0,0 +1,61 @@ + $request]); + } + + /** + * Handle an incoming new password request. + * + * @throws \Illuminate\Validation\ValidationException + */ + public function store(Request $request): RedirectResponse + { + $request->validate([ + 'token' => ['required'], + 'email' => ['required', 'email'], + 'password' => ['required', 'confirmed', Rules\Password::defaults()], + ]); + + // Here we will attempt to reset the user's password. If it is successful we + // will update the password on an actual user model and persist it to the + // database. Otherwise we will parse the error and return the response. + $status = Password::reset( + $request->only('email', 'password', 'password_confirmation', 'token'), + function ($user) use ($request) { + $user->forceFill([ + 'password' => Hash::make($request->password), + 'remember_token' => Str::random(60), + ])->save(); + + event(new PasswordReset($user)); + } + ); + + // If the password was successfully reset, we will redirect the user back to + // the application's home authenticated view. If there is an error we can + // redirect them back to where they came from with their error message. + return $status == Password::PASSWORD_RESET + ? redirect()->route('login')->with('status', __($status)) + : back()->withInput($request->only('email')) + ->withErrors(['email' => __($status)]); + } +} diff --git a/app/Http/Controllers/Auth/PasswordController.php b/app/Http/Controllers/Auth/PasswordController.php new file mode 100644 index 0000000..6916409 --- /dev/null +++ b/app/Http/Controllers/Auth/PasswordController.php @@ -0,0 +1,29 @@ +validateWithBag('updatePassword', [ + 'current_password' => ['required', 'current_password'], + 'password' => ['required', Password::defaults(), 'confirmed'], + ]); + + $request->user()->update([ + 'password' => Hash::make($validated['password']), + ]); + + return back()->with('status', 'password-updated'); + } +} diff --git a/app/Http/Controllers/Auth/PasswordResetLinkController.php b/app/Http/Controllers/Auth/PasswordResetLinkController.php new file mode 100644 index 0000000..ce813a6 --- /dev/null +++ b/app/Http/Controllers/Auth/PasswordResetLinkController.php @@ -0,0 +1,44 @@ +validate([ + 'email' => ['required', 'email'], + ]); + + // We will send the password reset link to this user. Once we have attempted + // to send the link, we will examine the response then see the message we + // need to show to the user. Finally, we'll send out a proper response. + $status = Password::sendResetLink( + $request->only('email') + ); + + return $status == Password::RESET_LINK_SENT + ? back()->with('status', __($status)) + : back()->withInput($request->only('email')) + ->withErrors(['email' => __($status)]); + } +} diff --git a/app/Http/Controllers/Auth/RegisteredUserController.php b/app/Http/Controllers/Auth/RegisteredUserController.php new file mode 100644 index 0000000..d61fa1f --- /dev/null +++ b/app/Http/Controllers/Auth/RegisteredUserController.php @@ -0,0 +1,59 @@ +validate([ + 'username' => 'required|string|unique:users', + 'password' => ['required', 'confirmed', Rules\Password::defaults()], + 'name' => ['required', 'string', 'max:255'], + 'email' => ['required', 'string', 'lowercase', 'email', 'max:255', 'unique:'.User::class], + 'telepon' => 'required|string', + 'alamat' => 'string', + 'gender' => 'required|string', + ]); + + $user = User::create([ + 'user_role' => 'user', + 'username' => $request->username, + 'password' => bcrypt($request->password), + 'name' => $request->name, + 'email' => $request->email, + 'telepon' => $request->telepon, + 'alamat' => $request->alamat, + 'gender' => $request->gender, + ]); + + event(new Registered($user)); + + //Auth::login($user); + + return redirect(route('login', absolute: false)); + } +} diff --git a/app/Http/Controllers/Auth/VerifyEmailController.php b/app/Http/Controllers/Auth/VerifyEmailController.php new file mode 100644 index 0000000..784765e --- /dev/null +++ b/app/Http/Controllers/Auth/VerifyEmailController.php @@ -0,0 +1,27 @@ +user()->hasVerifiedEmail()) { + return redirect()->intended(route('dashboard', absolute: false).'?verified=1'); + } + + if ($request->user()->markEmailAsVerified()) { + event(new Verified($request->user())); + } + + return redirect()->intended(route('dashboard', absolute: false).'?verified=1'); + } +} diff --git a/app/Http/Controllers/Auth/error_log b/app/Http/Controllers/Auth/error_log new file mode 100644 index 0000000..7f0358b --- /dev/null +++ b/app/Http/Controllers/Auth/error_log @@ -0,0 +1,1436 @@ +[24-Jun-2024 01:01:27 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[24-Jun-2024 01:01:52 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[24-Jun-2024 01:02:33 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[24-Jun-2024 01:03:30 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[24-Jun-2024 04:31:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[24-Jun-2024 04:31:15 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[24-Jun-2024 04:31:24 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[24-Jun-2024 04:31:24 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[24-Jun-2024 04:31:24 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[25-Jun-2024 21:05:51 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[25-Jun-2024 21:05:53 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[25-Jun-2024 21:05:54 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[25-Jun-2024 21:05:58 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[25-Jun-2024 21:06:10 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[25-Jun-2024 21:06:22 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[25-Jun-2024 21:07:18 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[25-Jun-2024 23:08:17 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[25-Jun-2024 23:08:56 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[28-Jun-2024 15:16:35 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[28-Jun-2024 15:16:54 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[28-Jun-2024 20:07:36 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[28-Jun-2024 20:07:37 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[28-Jun-2024 20:07:37 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[28-Jun-2024 20:07:38 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[28-Jun-2024 20:07:40 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[28-Jun-2024 20:08:51 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[28-Jun-2024 20:11:15 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[28-Jun-2024 20:14:52 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[28-Jun-2024 20:18:52 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[28-Jun-2024 20:55:51 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[28-Jun-2024 20:55:58 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[28-Jun-2024 20:56:05 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[28-Jun-2024 20:56:46 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[28-Jun-2024 20:57:43 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[28-Jun-2024 20:58:31 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[28-Jun-2024 20:58:59 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[30-Jun-2024 18:19:38 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[30-Jun-2024 18:21:33 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[30-Jun-2024 23:15:52 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[30-Jun-2024 23:17:56 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[01-Jul-2024 07:03:47 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[03-Jul-2024 02:13:39 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[03-Jul-2024 08:54:54 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[23-Jul-2024 10:41:04 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[25-Jul-2024 19:36:20 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[25-Jul-2024 20:08:45 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[25-Jul-2024 20:18:46 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[25-Jul-2024 20:32:57 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[25-Jul-2024 21:23:08 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[25-Jul-2024 22:03:21 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[26-Jul-2024 00:37:08 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[26-Jul-2024 00:49:51 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[26-Jul-2024 02:10:47 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[26-Jul-2024 03:54:39 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[26-Jul-2024 10:39:54 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[26-Jul-2024 11:47:30 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[28-Jul-2024 20:13:52 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[29-Jul-2024 02:29:55 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[02-Aug-2024 19:21:13 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[03-Aug-2024 00:41:06 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[03-Aug-2024 00:41:06 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[03-Aug-2024 00:41:06 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[03-Aug-2024 00:41:07 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[03-Aug-2024 00:41:08 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[03-Aug-2024 00:41:08 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[03-Aug-2024 00:41:08 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[03-Aug-2024 00:41:09 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[03-Aug-2024 00:41:09 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[03-Aug-2024 00:41:09 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[03-Aug-2024 00:41:10 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[03-Aug-2024 00:41:10 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[03-Aug-2024 00:41:11 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[03-Aug-2024 00:41:12 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[03-Aug-2024 00:41:12 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[03-Aug-2024 00:41:13 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[03-Aug-2024 00:41:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[03-Aug-2024 00:41:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[07-Aug-2024 03:34:16 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[07-Aug-2024 09:50:29 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[08-Aug-2024 18:52:01 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[11-Aug-2024 06:24:12 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[23-Aug-2024 12:22:18 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[23-Aug-2024 14:09:51 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[23-Aug-2024 15:06:21 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[24-Aug-2024 18:17:25 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[25-Aug-2024 05:27:30 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[25-Aug-2024 05:56:42 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[27-Aug-2024 13:23:11 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[31-Aug-2024 19:23:07 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[31-Aug-2024 19:44:46 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[31-Aug-2024 22:04:15 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[01-Sep-2024 00:50:47 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[01-Sep-2024 04:11:20 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[01-Sep-2024 05:05:37 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[01-Sep-2024 07:43:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[01-Sep-2024 07:57:40 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[01-Sep-2024 08:14:06 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[05-Sep-2024 23:35:26 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[10-Sep-2024 08:59:23 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[03-Oct-2024 22:02:29 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[03-Oct-2024 22:19:27 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[04-Oct-2024 04:16:43 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[04-Oct-2024 08:03:46 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[04-Oct-2024 08:05:19 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[04-Oct-2024 09:33:28 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[04-Oct-2024 10:33:11 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[07-Oct-2024 17:46:42 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[07-Oct-2024 19:19:22 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[15-Oct-2024 11:26:28 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[28-Oct-2024 14:35:48 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[31-Oct-2024 20:37:06 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[01-Nov-2024 06:29:11 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[05-Nov-2024 02:33:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[07-Nov-2024 00:15:53 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[07-Nov-2024 02:29:46 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[07-Nov-2024 09:12:33 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[07-Nov-2024 10:31:51 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[07-Nov-2024 11:34:30 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[07-Nov-2024 13:16:22 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[07-Nov-2024 14:24:44 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[11-Nov-2024 16:19:05 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[11-Nov-2024 18:39:45 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[12-Nov-2024 22:17:34 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[15-Nov-2024 23:35:41 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[22-Nov-2024 21:48:25 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[22-Nov-2024 21:48:26 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[22-Nov-2024 21:48:26 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[22-Nov-2024 21:48:27 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[22-Nov-2024 21:48:28 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[22-Nov-2024 21:48:28 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[22-Nov-2024 21:48:29 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[22-Nov-2024 21:48:30 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[22-Nov-2024 21:48:30 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[06-Dec-2024 20:14:36 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[06-Dec-2024 23:07:12 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[07-Dec-2024 03:46:10 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[07-Dec-2024 03:52:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[07-Dec-2024 05:30:11 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[07-Dec-2024 08:23:59 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[07-Dec-2024 10:13:03 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[15-Dec-2024 07:09:30 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[20-Dec-2024 16:24:44 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[09-Jan-2025 03:24:13 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[09-Jan-2025 04:21:10 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[09-Jan-2025 05:54:56 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[09-Jan-2025 07:11:19 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[09-Jan-2025 07:38:27 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[09-Jan-2025 12:21:20 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[09-Jan-2025 12:31:29 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[18-Jan-2025 06:04:38 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[20-Jan-2025 02:19:05 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[05-Feb-2025 05:50:04 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[05-Feb-2025 07:03:20 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[08-Feb-2025 22:31:30 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[08-Feb-2025 22:38:31 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[10-Feb-2025 09:56:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[10-Feb-2025 12:34:44 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[10-Feb-2025 12:40:13 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[10-Feb-2025 18:20:05 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[10-Feb-2025 19:57:33 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[12-Feb-2025 07:33:43 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[12-Feb-2025 07:43:26 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[12-Feb-2025 13:46:42 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[12-Feb-2025 14:03:56 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[12-Feb-2025 14:40:26 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[12-Feb-2025 15:01:13 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[12-Feb-2025 15:03:44 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[12-Feb-2025 15:05:30 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[12-Feb-2025 15:06:52 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[12-Feb-2025 15:18:25 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[15-Feb-2025 06:01:34 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[15-Feb-2025 07:04:07 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[15-Feb-2025 07:04:43 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[15-Feb-2025 07:05:48 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[15-Feb-2025 07:07:49 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[15-Feb-2025 07:12:07 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[15-Feb-2025 07:20:34 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[15-Feb-2025 07:36:48 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[17-Feb-2025 05:26:53 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[17-Feb-2025 13:15:13 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[19-Feb-2025 06:23:57 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[19-Feb-2025 11:24:38 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[20-Feb-2025 12:23:15 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[22-Feb-2025 23:27:03 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[11-Apr-2025 05:42:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[11-Apr-2025 08:29:36 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[11-Apr-2025 11:02:54 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[11-Apr-2025 13:04:47 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[11-Apr-2025 13:36:45 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[11-Apr-2025 15:37:35 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[11-Apr-2025 16:13:31 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[11-Apr-2025 17:04:55 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[27-Apr-2025 01:03:04 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[30-Apr-2025 19:40:52 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[09-May-2025 01:12:12 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[09-May-2025 03:40:25 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[09-May-2025 05:30:49 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[09-May-2025 06:00:57 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[09-May-2025 07:43:32 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[09-May-2025 10:39:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[09-May-2025 10:51:25 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[09-May-2025 16:01:25 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[11-May-2025 07:21:26 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[14-May-2025 08:30:19 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[16-May-2025 02:29:47 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[16-May-2025 06:32:21 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[18-May-2025 09:10:28 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[19-May-2025 18:39:41 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[23-May-2025 12:19:44 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[31-May-2025 12:09:36 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[05-Jun-2025 21:35:46 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[06-Jun-2025 00:23:09 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[06-Jun-2025 01:53:23 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[06-Jun-2025 03:48:27 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[06-Jun-2025 05:02:03 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[06-Jun-2025 08:21:33 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[06-Jun-2025 09:04:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[06-Jun-2025 10:09:45 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[28-Jun-2025 13:49:35 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[09-Jul-2025 19:45:37 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[09-Jul-2025 20:33:40 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[09-Jul-2025 23:13:11 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[10-Jul-2025 02:19:27 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[10-Jul-2025 03:01:10 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[10-Jul-2025 03:53:33 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[10-Jul-2025 05:12:53 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[10-Jul-2025 05:59:22 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[26-Jul-2025 23:42:17 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[07-Aug-2025 05:53:21 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[07-Aug-2025 07:43:23 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[07-Aug-2025 08:51:22 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[07-Aug-2025 08:57:01 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[07-Aug-2025 10:39:17 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[07-Aug-2025 12:22:29 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[12-Aug-2025 13:34:08 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[27-Aug-2025 16:16:41 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[28-Aug-2025 12:13:58 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[28-Aug-2025 13:58:41 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[29-Aug-2025 03:42:20 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[29-Aug-2025 08:02:09 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[29-Aug-2025 13:42:11 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[29-Aug-2025 16:49:36 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[29-Aug-2025 16:55:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[29-Aug-2025 16:58:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[29-Aug-2025 17:00:52 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[29-Aug-2025 17:06:37 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[29-Aug-2025 17:09:34 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[29-Aug-2025 17:45:32 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[30-Aug-2025 13:30:33 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[31-Aug-2025 05:43:32 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[10-Sep-2025 19:22:28 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[10-Sep-2025 22:24:19 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[10-Sep-2025 22:40:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[10-Sep-2025 23:34:42 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[11-Sep-2025 00:46:23 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[11-Sep-2025 02:57:46 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[14-Sep-2025 20:37:25 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[21-Sep-2025 09:15:07 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[21-Sep-2025 09:15:08 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[22-Sep-2025 13:20:26 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[22-Sep-2025 19:09:59 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[22-Sep-2025 19:10:40 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[22-Sep-2025 19:12:10 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[22-Sep-2025 19:13:33 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[22-Sep-2025 19:14:57 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[22-Sep-2025 19:16:43 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[22-Sep-2025 19:18:07 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[22-Sep-2025 19:19:48 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[25-Sep-2025 04:13:53 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[12-Oct-2025 12:47:59 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[12-Oct-2025 13:13:33 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[12-Oct-2025 17:27:08 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[12-Oct-2025 18:26:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[12-Oct-2025 20:45:20 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[12-Oct-2025 21:53:11 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[13-Oct-2025 04:30:50 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[15-Oct-2025 20:48:20 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[20-Oct-2025 03:10:45 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[24-Oct-2025 08:16:27 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[11-Nov-2025 13:23:13 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[11-Nov-2025 13:56:55 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[11-Nov-2025 18:05:43 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[13-Nov-2025 01:52:31 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[13-Nov-2025 02:30:56 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[13-Nov-2025 02:31:32 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[13-Nov-2025 02:38:52 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[13-Nov-2025 02:50:29 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[13-Nov-2025 03:06:44 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[13-Nov-2025 03:07:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[13-Nov-2025 03:14:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[13-Nov-2025 03:47:47 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[13-Nov-2025 09:49:50 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[13-Nov-2025 12:20:29 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[13-Nov-2025 17:56:27 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[14-Nov-2025 21:52:15 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[14-Nov-2025 22:08:51 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[15-Nov-2025 02:52:03 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[15-Nov-2025 05:53:39 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[15-Nov-2025 07:26:21 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[15-Nov-2025 18:00:12 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[16-Nov-2025 06:00:10 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[24-Nov-2025 02:36:57 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[04-Jan-2026 18:33:51 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[05-Jan-2026 06:11:58 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[06-Jan-2026 06:10:40 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[06-Jan-2026 13:06:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[07-Jan-2026 00:46:43 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[07-Jan-2026 02:14:57 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[07-Jan-2026 07:26:25 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[08-Jan-2026 12:51:22 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[08-Jan-2026 14:40:54 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[08-Jan-2026 19:32:21 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[09-Jan-2026 13:21:07 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[12-Jan-2026 02:45:01 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[01-Feb-2026 03:56:12 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[01-Feb-2026 03:57:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[01-Feb-2026 04:00:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[01-Feb-2026 04:01:22 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[01-Feb-2026 06:12:28 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[01-Feb-2026 11:06:53 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[01-Feb-2026 11:07:06 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[01-Feb-2026 11:07:31 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[12-Feb-2026 19:32:26 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[12-Feb-2026 19:37:37 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[12-Feb-2026 20:48:08 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[12-Feb-2026 21:09:19 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[13-Feb-2026 04:31:24 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[13-Feb-2026 04:36:02 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[16-Feb-2026 04:20:39 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[16-Feb-2026 11:36:13 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[16-Feb-2026 15:19:05 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[17-Mar-2026 02:18:21 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[17-Mar-2026 03:15:13 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[17-Mar-2026 04:03:46 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[17-Mar-2026 05:56:58 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[17-Mar-2026 06:04:24 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[17-Mar-2026 07:26:22 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[17-Mar-2026 09:42:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[17-Mar-2026 11:21:23 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[20-Mar-2026 15:19:17 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[10-Apr-2026 07:53:48 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[10-Apr-2026 08:29:44 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[12-Apr-2026 20:30:00 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[13-Apr-2026 08:59:10 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[14-Apr-2026 07:21:00 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[15-Apr-2026 10:22:17 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[16-Apr-2026 17:24:47 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[18-Apr-2026 11:12:38 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[18-Apr-2026 12:42:58 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[18-Apr-2026 20:56:27 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/RegisteredUserController.php on line 15 +[18-Apr-2026 20:59:17 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php:15 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/NewPasswordController.php on line 15 +[18-Apr-2026 23:03:34 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordController.php on line 11 +[19-Apr-2026 02:45:54 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php on line 13 +[19-Apr-2026 04:55:33 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 +[19-Apr-2026 07:27:49 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/VerifyEmailController.php on line 10 +[19-Apr-2026 08:19:14 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php on line 12 +[19-Apr-2026 08:24:06 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php on line 9 +[19-Apr-2026 08:27:33 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php on line 11 +[03-May-2026 05:47:37 UTC] PHP Fatal error: Uncaught Error: Class "App\Http\Controllers\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php on line 10 diff --git a/app/Http/Controllers/ConsultationController.php b/app/Http/Controllers/ConsultationController.php new file mode 100644 index 0000000..03f6bda --- /dev/null +++ b/app/Http/Controllers/ConsultationController.php @@ -0,0 +1,82 @@ +user(); + $healthData = HealthData::where('users_id', $user->id)->get()->last(); + return view('health-data', compact('healthData')); + } + + public function storeHealthDataForm(Request $request) + { + $validatedData = $request->validate([ + 'birthdate' => 'required|date', + 'weight' => 'required|numeric', + 'height' => 'required|numeric', + 'sleeptime' => 'required|integer', + 'disease' => 'required|string', + 'food' => 'required|string', + 'alergi_makanan' => 'required|string', + ]); + + $user = auth()->user(); + + $data = HealthData::create( + [ + 'users_id' => $user->id, + 'birthdate' => Carbon::parse($validatedData['birthdate'])->format('Y-m-d'), + 'weight' => $validatedData['weight'], + 'height' => $validatedData['height'], + 'sleeptime' => $validatedData['sleeptime'], + 'disease' => $validatedData['disease'], + 'food' => $validatedData['food'], + 'alergi_makanan' => $validatedData['alergi_makanan'], + ] + ); + + return redirect()->route('jadwal.show'); + } + + + public function showJadwalForm() + { + $user = auth()->user(); + $doctors = User::where('user_role', 'doctor')->get(); + return view('jadwal-konsultasi', compact('doctors')); + } + + // ConsultationController.php + public function storeConsultation(Request $request) + { + $validatedData = $request->validate([ + 'doctor_id' => 'required|exists:users,id', + 'consultation_date' => 'required|date', + 'consultation_time' => 'required', + 'location' => 'required|string', + ]); + + $user = auth()->user(); + + $data = Consultation::create([ + 'patient_id' => $user->id, + 'doctor_id' => $validatedData['doctor_id'], + 'consultation_date' => Carbon::parse($validatedData['consultation_date'])->format('Y-m-d'), + 'consultation_time' => $validatedData['consultation_time'], + 'location' => $validatedData['location'], + 'consultation_status' => 'pending', + ]); + + return redirect()->route('dashboard'); + } + +} \ No newline at end of file diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..8677cd5 --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,8 @@ +user(); + + $activities = PhysicalActivity::where('users_id', $user->id)->get(); + $healthData = HealthData::where('users_id', $user->id)->get()->last(); + + $activities->transform(function ($activity) { + $activity->date = Carbon::parse($activity->date)->format('d M Y'); + $activity->calories_burned = $activity->calculateCaloriesBurned(); + return $activity; + }); + + // Loop through activities and print out the values + + $totalDistance = $activities->sum('distance'); + + if ($healthData) { + // Check if obesity_status is null + if (!$healthData->obesity_status) { + // Call prediction method only if obesity_status is null + $obesityPrediction = $this->predictObesity($healthData, $user); + $healthData->obesity_status = $obesityPrediction; + $healthData->save(); + } + + // Check if calorie_recommendation is null + if (!$healthData->calorie_recommendation) { + // Call calorie prediction method only if calorie_recommendation is null + $calorieRecommendation = $this->predictCalories($healthData, $user); + $healthData->calorie_recommendation = $calorieRecommendation; + $healthData->save(); + } + } + + return view('dashboardClient', compact('activities', 'healthData', 'totalDistance')); + } + + private function predictObesity($healthData, $user) + { + $data = [ + 'height' => $healthData->height ?? 0, + 'weight' => $healthData->weight ?? 0, + 'age' => now()->diffInYears($healthData->birthdate ?? '2000-03-25'), + 'gender' => ($user->gender === 'male') ? 'M' : 'F', + 'activity_level' => 1, + ]; + + $obesityPrediction = Http::post('https://aigoo.humicprototypingapi.online/api/predict/obesity', $data)->json(); + $predictedCategory = $obesityPrediction['predicted_category'] ?? null; + return $predictedCategory; + } + + private function predictCalories($healthData, $user) + { + $data = [ + 'height' => $healthData->height ?? 0, + 'weight' => $healthData->weight ?? 0, + 'age' => now()->diffInYears($healthData->birthdate ?? '2000-03-25'), + 'gender' => ($user->gender === 'male') ? 'M' : 'F', + ]; + + $response = Http::post('https://aigoo.humicprototypingapi.online/api/predict/calorie', $data); + $predictedCalories = ceil($response->json()['predicted_calories']); + + return $predictedCalories; + } + + public function activityReport() + { + $currentMonth = now()->format('m'); + $currentYear = now()->format('Y'); + + $user = auth()->user(); + $healthData = HealthData::where('users_id', $user->id) + ->orderBy('updated_at', 'desc') + ->get(); + + $healthData->transform(function ($item) { + $item->formatted_created_at = Carbon::parse($item->created_at)->format('d F Y'); + $item->time = Carbon::parse($item->created_at)->format('h:i A'); + return $item; + }); + + $activities = PhysicalActivity::whereYear('date', $currentYear) + ->whereMonth('date', $currentMonth) + ->where('users_id', $user->id) + ->get(); + + $totalSteps = $activities->sum('avg_steps'); + $totalDistance = $activities->sum('distance'); + $totalDuration = $activities->sum('duration'); + + if ($totalDuration < 60) { + $durationValue = $totalDuration; + $durationUnit = 'seconds'; + } elseif ($totalDuration < 3600) { + $durationValue = floor($totalDuration / 60); + $durationUnit = 'minutes'; + } else { + $durationValue = floor($totalDuration / 3600); + $durationUnit = 'hours'; + } + + $filteredHealthData = collect(); + foreach ($healthData as $index => $data) { + if ($index < $healthData->count() - 1) { + $nextWeight = $healthData[$index + 1]->weight; + $data->weight_difference = $data->weight - $nextWeight; + if ($data->weight_difference != 0) { + $filteredHealthData->push($data); + } + } else { + $data->weight_difference = 0; + $filteredHealthData->push($data); + } + } + + $totalSleepTime = $healthData->sum('sleeptime'); + if ($healthData->count() > 0) { + $averageSleepTime = number_format($totalSleepTime / $healthData->count(), 2); + } else { + $averageSleepTime = 0; + } + + $latestHealthData = $healthData->last(); + if ($latestHealthData) { + $predictedCalories = $this->predictCalories($latestHealthData, $user); + } else { + $predictedCalories = 0; + } + + $recommended_distance = Result::where('patient_id', $user->id)->get()->last()->jarak_lari ?? 0; + + + $chartData = PhysicalActivity::whereYear('date', $currentYear) + ->whereMonth('date', $currentMonth) + ->where('users_id', $user->id) + ->orderBy('date') + ->get(); + + $labels = $chartData->map(function ($activity) { + return Carbon::parse($activity->date)->format('d F'); + }); + + $distances = $chartData->map(function ($activity) { + return intval($activity->distance); + }); + + $durations = $chartData->map(function ($activity) { + return intval($activity->duration); + }); + + return view('activity-report', compact( + 'totalSteps', 'totalDistance', 'durationValue', 'durationUnit', + 'averageSleepTime', 'filteredHealthData', 'activities', 'predictedCalories', + 'recommended_distance', 'labels', 'distances', 'durations' + )); + } + + public function schedule() + { + $user = auth()->user(); + + $approvedConsultations = Consultation::where('patient_id', $user->id) + ->where('consultation_status', 'approved') + ->with('doctor') + ->get(); + + return view('customer-schedule', compact('approvedConsultations')); + } + + public function notifications() + { + $patient = auth()->user(); + $notifications = Notification::where('user_id', $patient->id)->orderBy('created_at', 'desc')->get(); + + return view('patient-notifications', compact('notifications')); + } + + public function consultation() + { + return view('health-data'); + } + + + public function consultationResults() + { + $patient = auth()->user(); + $consultations = Consultation::where('patient_id', $patient->id) + ->where('consultation_status', 'finished') + ->with('doctor', 'result') + ->orderBy('consultation_date', 'desc') + ->get(); + + return view('customer-result', compact('consultations')); + } + +} \ No newline at end of file diff --git a/app/Http/Controllers/DoctorController.php b/app/Http/Controllers/DoctorController.php new file mode 100644 index 0000000..17be656 --- /dev/null +++ b/app/Http/Controllers/DoctorController.php @@ -0,0 +1,162 @@ +count(); + $overweightCount = HealthData::where('obesity_status', 'Overweight')->count(); + $unknownCount = HealthData::whereNotIn('obesity_status', ['Normal weight', 'Overweight'])->count(); + + $doctor = auth()->user(); + + $totalAppointments = Consultation::where('doctor_id', $doctor->id)->count(); + $pendingAppointments = Consultation::where('doctor_id', $doctor->id) + ->where('consultation_status', 'pending') + ->count(); + + $malePatients = User::where('user_role', 'user') + ->where('gender', 'male') + ->count(); + $femalePatients = User::where('user_role', 'user') + ->where('gender', 'female') + ->count(); + + + $latestAppointments = Consultation::where('doctor_id', $doctor->id) + ->orderBy('consultation_date', 'desc') + ->take(5) + ->get(); + + return view('dashboardDoctor', compact( + 'normalWeightCount', + 'overweightCount', + 'unknownCount', + 'totalAppointments', + 'pendingAppointments', + 'malePatients', + 'femalePatients', + 'latestAppointments' + )); + } + + public function notifications() + { + $doctor = auth()->user(); + $notifications = Notification::where('user_id', $doctor->id)->orderBy('created_at', 'desc')->get(); + + return view('doctor-notifications', compact('notifications')); + } + + public function patientAcceptance() + { + $doctor = auth()->user(); + $consultations = Consultation::with('patient') + ->where('doctor_id', $doctor->id) + ->where('consultation_status', 'pending') + ->get(); + + return view('acceptance-patients', compact('consultations')); + } + + public function approveConsultation($consultationId) + { + $consultation = Consultation::findOrFail($consultationId); + $consultation->consultation_status = 'approved'; + $consultation->save(); + + // Create notification for the patient + $patientNotification = new Notification(); + $patientNotification->user_id = $consultation->patient_id; + $patientNotification->consultation_id = $consultation->id; + $patientNotification->message = 'Your consultation request has been approved by Dr. ' . $consultation->doctor->name . '.'; + $patientNotification->save(); + + // Create notification for the doctor + $doctorNotification = new Notification(); + $doctorNotification->user_id = $consultation->doctor_id; + $doctorNotification->consultation_id = $consultation->id; + $doctorNotification->message = 'You have approved the consultation request from ' . $consultation->patient->name . '.'; + $doctorNotification->save(); + + return redirect()->back()->with('success', 'Consultation approved successfully.'); + } + + public function declineConsultation($consultationId) + { + $consultation = Consultation::findOrFail($consultationId); + $consultation->consultation_status = 'declined'; + $consultation->save(); + + // Create notification for the patient + $patientNotification = new Notification(); + $patientNotification->user_id = $consultation->patient_id; + $patientNotification->consultation_id = $consultation->id; + $patientNotification->message = 'Your consultation request has been declined by Dr. ' . $consultation->doctor->name . '.'; + $patientNotification->save(); + + // Create notification for the doctor + $doctorNotification = new Notification(); + $doctorNotification->user_id = $consultation->doctor_id; + $doctorNotification->consultation_id = $consultation->id; + $doctorNotification->message = 'You have declined the consultation request from ' . $consultation->patient->name . '.'; + $doctorNotification->save(); + + return redirect()->back()->with('success', 'Consultation declined successfully.'); + } + + public function schedule() + { + $doctor = auth()->user(); + $approvedConsultations = Consultation::where('doctor_id', $doctor->id) + ->where('consultation_status', 'approved') + ->with('patient.healthDatas') + ->get(); + + return view('doctor-schedule', compact('approvedConsultations')); + } + + public function showConsultationResultForm($patientId) + { + return view('doctor-result-form', compact('patientId')); + } + + public function storeConsultationResult(Request $request) + { + $validatedData = $request->validate([ + 'doctor_id' => 'required|exists:users,id', + 'patient_id' => 'required|exists:users,id', + 'jarak_lari' => 'required|integer', + 'sleeptime' => 'required|numeric', + 'food' => 'required|string', + 'unrecommended_food' => 'required|string', + 'notes' => 'required|string', + ]); + + $consultation = Consultation::where('doctor_id', $validatedData['doctor_id']) + ->where('patient_id', $validatedData['patient_id']) + ->where('consultation_status', 'approved') + ->first(); + + if ($consultation) { + $validatedData['consultation_id'] = $consultation->id; + Result::create($validatedData); + + $consultation->consultation_status = 'finished'; + $consultation->save(); + + return redirect()->route('doctor.schedule')->with('success', 'Consultation result submitted successfully.'); + } + + return redirect()->back()->with('error', 'Consultation not found or already finished.'); + } +} diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php new file mode 100644 index 0000000..a48eb8d --- /dev/null +++ b/app/Http/Controllers/ProfileController.php @@ -0,0 +1,60 @@ + $request->user(), + ]); + } + + /** + * Update the user's profile information. + */ + public function update(ProfileUpdateRequest $request): RedirectResponse + { + $request->user()->fill($request->validated()); + + if ($request->user()->isDirty('email')) { + $request->user()->email_verified_at = null; + } + + $request->user()->save(); + + return Redirect::route('profile.edit')->with('status', 'profile-updated'); + } + + /** + * Delete the user's account. + */ + public function destroy(Request $request): RedirectResponse + { + $request->validateWithBag('userDeletion', [ + 'password' => ['required', 'current_password'], + ]); + + $user = $request->user(); + + Auth::logout(); + + $user->delete(); + + $request->session()->invalidate(); + $request->session()->regenerateToken(); + + return Redirect::to('/'); + } +} diff --git a/app/Http/Controllers/StravaController.php b/app/Http/Controllers/StravaController.php new file mode 100644 index 0000000..9881af8 --- /dev/null +++ b/app/Http/Controllers/StravaController.php @@ -0,0 +1,117 @@ +validate([ + 'email' => 'required|email', + 'password' => 'required', + ]); + + if (Auth::attempt($request->only('email', 'password'), $request->filled('remember'))) { + if (Auth::user()->user_role == 'user') { + $clientId = "124405"; + $redirectUri = route('strava.callback'); + $authUrl = "https://www.strava.com/oauth/authorize?client_id={$clientId}&redirect_uri={$redirectUri}&response_type=code&scope=activity:read_all"; + + return redirect()->away($authUrl); + } elseif (Auth::user()->user_role == 'doctor') { + return redirect()->route('doctor.dashboard'); + } else { + return redirect()->route('admin.dashboard'); + } + } + + return back()->withErrors([ + 'email' => 'The provided credentials do not match our records.', + ]); + } + + public function handleCallback(Request $request) + { + $authorizationCode = $request->input('code'); + if ($authorizationCode) { + $tokenEndpoint = "https://www.strava.com/oauth/token"; + $clientId = "124405"; + $clientSecret = "2df5d622c326215c290841fb0ffcdd894274803e"; + + $response = Http::post($tokenEndpoint, [ + 'client_id' => $clientId, + 'client_secret' => $clientSecret, + 'code' => $authorizationCode, + 'grant_type' => 'authorization_code', + ]); + + $data = $response->json(); + //dd($data); + $accessToken = $data['access_token']; + + + // Store the access token in the session or database for future API requests + session(['strava_access_token' => $accessToken]); + // Redirect the user to the desired page after successful authorization + + if (auth()->user()->user_role == 'user') { + $this->fetchAthleteActivities($data['access_token']); + return redirect()->intended(route('dashboard')); + } else if (auth()->user()->user_role == 'doctor') { + // redirect to doctor dashboard (TODO) + } else { + return redirect()->intended(route('admin.dashboard')); + } + } + + // Handle the case when the authorization code is missing + return view('auth.login'); + } + + public function fetchAthleteActivities($accessToken) + { + $accessToken = session('strava_access_token'); + + if ($accessToken) { + $activitiesEndpoint = "https://www.strava.com/api/v3/athlete/activities"; + + $response = Http::withHeaders([ + 'Authorization' => 'Bearer ' . $accessToken, + ])->get($activitiesEndpoint); + + $activities = $response->json(); + //dd($activities); + foreach ($activities as $activity) { + $existingActivity = PhysicalActivity::where('id', $activity['id'])->first(); + + if (!$existingActivity) { + $startDate = new \DateTime($activity['start_date_local']); + $formattedDate = $startDate->format('Y-m-d H:i:s'); + + PhysicalActivity::create([ + 'users_id' => auth()->user()->id, + //'id' => $activity['id'], + 'date' => $formattedDate, + 'type' => $activity['type'], + 'distance' => $activity['distance'], + 'duration' => $activity['moving_time'], + 'avg_speed' => $activity['average_speed'], + 'avg_steps' => $activity['average_cadence'] ?? 0, + ]); + } + } + + return $activities; + } + + // Handle the case when the access token is missing + return redirect()->route('login')->with('error', 'Strava access token not found.'); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php new file mode 100644 index 0000000..f9501cc --- /dev/null +++ b/app/Http/Controllers/UserController.php @@ -0,0 +1,13 @@ +user(), + Auth::user(), + $request['channel_name'], + $request['socket_id'] + ); + } + + /** + * Fetch data by id for (user/group) + * + * @param Request $request + * @return \Illuminate\Http\JsonResponse + */ + public function idFetchData(Request $request) + { + return auth()->user(); + // Favorite + $favorite = Chatify::inFavorite($request['id']); + + // User data + if ($request['type'] == 'user') { + $fetch = User::where('id', $request['id'])->first(); + if($fetch){ + $userAvatar = Chatify::getUserWithAvatar($fetch)->avatar; + } + } + + // send the response + return Response::json([ + 'favorite' => $favorite, + 'fetch' => $fetch ?? null, + 'user_avatar' => $userAvatar ?? null, + ]); + } + + /** + * This method to make a links for the attachments + * to be downloadable. + * + * @param string $fileName + * @return \Illuminate\Http\JsonResponse + */ + public function download($fileName) + { + $path = config('chatify.attachments.folder') . '/' . $fileName; + if (Chatify::storage()->exists($path)) { + return response()->json([ + 'file_name' => $fileName, + 'download_path' => Chatify::storage()->url($path) + ], 200); + } else { + return response()->json([ + 'message'=>"Sorry, File does not exist in our server or may have been deleted!" + ], 404); + } + } + + /** + * Send a message to database + * + * @param Request $request + * @return JSON response + */ + public function send(Request $request) + { + // default variables + $error = (object)[ + 'status' => 0, + 'message' => null + ]; + $attachment = null; + $attachment_title = null; + + // if there is attachment [file] + if ($request->hasFile('file')) { + // allowed extensions + $allowed_images = Chatify::getAllowedImages(); + $allowed_files = Chatify::getAllowedFiles(); + $allowed = array_merge($allowed_images, $allowed_files); + + $file = $request->file('file'); + // check file size + if ($file->getSize() < Chatify::getMaxUploadSize()) { + if (in_array(strtolower($file->extension()), $allowed)) { + // get attachment name + $attachment_title = $file->getClientOriginalName(); + // upload attachment and store the new name + $attachment = Str::uuid() . "." . $file->extension(); + $file->storeAs(config('chatify.attachments.folder'), $attachment, config('chatify.storage_disk_name')); + } else { + $error->status = 1; + $error->message = "File extension not allowed!"; + } + } else { + $error->status = 1; + $error->message = "File size you are trying to upload is too large!"; + } + } + + if (!$error->status) { + // send to database + $message = Chatify::newMessage([ + 'type' => $request['type'], + 'from_id' => Auth::user()->id, + 'to_id' => $request['id'], + 'body' => htmlentities(trim($request['message']), ENT_QUOTES, 'UTF-8'), + 'attachment' => ($attachment) ? json_encode((object)[ + 'new_name' => $attachment, + 'old_name' => htmlentities(trim($attachment_title), ENT_QUOTES, 'UTF-8'), + ]) : null, + ]); + + // fetch message to send it with the response + $messageData = Chatify::parseMessage($message); + + // send to user using pusher + if (Auth::user()->id != $request['id']) { + Chatify::push("private-chatify.".$request['id'], 'messaging', [ + 'from_id' => Auth::user()->id, + 'to_id' => $request['id'], + 'message' => $messageData + ]); + } + } + + // send the response + return Response::json([ + 'status' => '200', + 'error' => $error, + 'message' => $messageData ?? [], + 'tempID' => $request['temporaryMsgId'], + ]); + } + + /** + * fetch [user/group] messages from database + * + * @param Request $request + * @return JSON response + */ + public function fetch(Request $request) + { + $query = Chatify::fetchMessagesQuery($request['id'])->latest(); + $messages = $query->paginate($request->per_page ?? $this->perPage); + $totalMessages = $messages->total(); + $lastPage = $messages->lastPage(); + $response = [ + 'total' => $totalMessages, + 'last_page' => $lastPage, + 'last_message_id' => collect($messages->items())->last()->id ?? null, + 'messages' => $messages->items(), + ]; + return Response::json($response); + } + + /** + * Make messages as seen + * + * @param Request $request + * @return void + */ + public function seen(Request $request) + { + // make as seen + $seen = Chatify::makeSeen($request['id']); + // send the response + return Response::json([ + 'status' => $seen, + ], 200); + } + + /** + * Get contacts list + * + * @param Request $request + * @return \Illuminate\Http\JsonResponse response + */ + public function getContacts(Request $request) + { + // get all users that received/sent message from/to [Auth user] + $users = Message::join('users', function ($join) { + $join->on('ch_messages.from_id', '=', 'users.id') + ->orOn('ch_messages.to_id', '=', 'users.id'); + }) + ->where(function ($q) { + $q->where('ch_messages.from_id', Auth::user()->id) + ->orWhere('ch_messages.to_id', Auth::user()->id); + }) + ->where('users.id','!=',Auth::user()->id) + ->select('users.*',DB::raw('MAX(ch_messages.created_at) max_created_at')) + ->orderBy('max_created_at', 'desc') + ->groupBy('users.id') + ->paginate($request->per_page ?? $this->perPage); + + return response()->json([ + 'contacts' => $users->items(), + 'total' => $users->total() ?? 0, + 'last_page' => $users->lastPage() ?? 1, + ], 200); + } + + /** + * Put a user in the favorites list + * + * @param Request $request + * @return void + */ + public function favorite(Request $request) + { + $userId = $request['user_id']; + // check action [star/unstar] + $favoriteStatus = Chatify::inFavorite($userId) ? 0 : 1; + Chatify::makeInFavorite($userId, $favoriteStatus); + + // send the response + return Response::json([ + 'status' => @$favoriteStatus, + ], 200); + } + + /** + * Get favorites list + * + * @param Request $request + * @return void + */ + public function getFavorites(Request $request) + { + $favorites = Favorite::where('user_id', Auth::user()->id)->get(); + foreach ($favorites as $favorite) { + $favorite->user = User::where('id', $favorite->favorite_id)->first(); + } + return Response::json([ + 'total' => count($favorites), + 'favorites' => $favorites ?? [], + ], 200); + } + + /** + * Search in messenger + * + * @param Request $request + * @return \Illuminate\Http\JsonResponse + */ + public function search(Request $request) + { + $input = trim(filter_var($request['input'])); + $records = User::where('id','!=',Auth::user()->id) + ->where('name', 'LIKE', "%{$input}%") + ->paginate($request->per_page ?? $this->perPage); + + foreach ($records->items() as $index => $record) { + $records[$index] += Chatify::getUserWithAvatar($record); + } + + return Response::json([ + 'records' => $records->items(), + 'total' => $records->total(), + 'last_page' => $records->lastPage() + ], 200); + } + + /** + * Get shared photos + * + * @param Request $request + * @return \Illuminate\Http\JsonResponse + */ + public function sharedPhotos(Request $request) + { + $images = Chatify::getSharedPhotos($request['user_id']); + + foreach ($images as $image) { + $image = asset(config('chatify.attachments.folder') . $image); + } + // send the response + return Response::json([ + 'shared' => $images ?? [], + ], 200); + } + + /** + * Delete conversation + * + * @param Request $request + * @return void + */ + public function deleteConversation(Request $request) + { + // delete + $delete = Chatify::deleteConversation($request['id']); + + // send the response + return Response::json([ + 'deleted' => $delete ? 1 : 0, + ], 200); + } + + public function updateSettings(Request $request) + { + $msg = null; + $error = $success = 0; + + // dark mode + if ($request['dark_mode']) { + $request['dark_mode'] == "dark" + ? User::where('id', Auth::user()->id)->update(['dark_mode' => 1]) // Make Dark + : User::where('id', Auth::user()->id)->update(['dark_mode' => 0]); // Make Light + } + + // If messenger color selected + if ($request['messengerColor']) { + $messenger_color = trim(filter_var($request['messengerColor'])); + User::where('id', Auth::user()->id) + ->update(['messenger_color' => $messenger_color]); + } + // if there is a [file] + if ($request->hasFile('avatar')) { + // allowed extensions + $allowed_images = Chatify::getAllowedImages(); + + $file = $request->file('avatar'); + // check file size + if ($file->getSize() < Chatify::getMaxUploadSize()) { + if (in_array(strtolower($file->extension()), $allowed_images)) { + // delete the older one + if (Auth::user()->avatar != config('chatify.user_avatar.default')) { + $path = Chatify::getUserAvatarUrl(Auth::user()->avatar); + if (Chatify::storage()->exists($path)) { + Chatify::storage()->delete($path); + } + } + // upload + $avatar = Str::uuid() . "." . $file->extension(); + $update = User::where('id', Auth::user()->id)->update(['avatar' => $avatar]); + $file->storeAs(config('chatify.user_avatar.folder'), $avatar, config('chatify.storage_disk_name')); + $success = $update ? 1 : 0; + } else { + $msg = "File extension not allowed!"; + $error = 1; + } + } else { + $msg = "File size you are trying to upload is too large!"; + $error = 1; + } + } + + // send the response + return Response::json([ + 'status' => $success ? 1 : 0, + 'error' => $error ? 1 : 0, + 'message' => $error ? $msg : 0, + ], 200); + } + + /** + * Set user's active status + * + * @param Request $request + * @return void + */ + public function setActiveStatus(Request $request) + { + $activeStatus = $request['status'] > 0 ? 1 : 0; + $status = User::where('id', Auth::user()->id)->update(['active_status' => $activeStatus]); + return Response::json([ + 'status' => $status, + ], 200); + } +} diff --git a/app/Http/Controllers/vendor/Chatify/Api/error_log b/app/Http/Controllers/vendor/Chatify/Api/error_log new file mode 100644 index 0000000..1cc6e38 --- /dev/null +++ b/app/Http/Controllers/vendor/Chatify/Api/error_log @@ -0,0 +1,136 @@ +[24-Jun-2024 08:53:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[26-Jun-2024 23:12:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[28-Jun-2024 23:37:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[30-Jun-2024 06:39:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[31-Jul-2024 03:03:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[03-Aug-2024 00:41:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[03-Aug-2024 00:41:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[06-Sep-2024 12:11:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[10-Oct-2024 00:47:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[17-Nov-2024 12:07:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[22-Nov-2024 21:48:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[21-Dec-2024 09:43:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[21-Jan-2025 08:36:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[12-Feb-2025 15:18:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[15-Feb-2025 20:39:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[01-Mar-2025 00:08:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[31-Mar-2025 02:46:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[05-May-2025 17:11:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[06-Jun-2025 15:24:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[02-Jul-2025 08:31:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[04-Jul-2025 04:33:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[02-Aug-2025 06:55:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[28-Aug-2025 04:11:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[28-Aug-2025 10:35:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[29-Aug-2025 23:55:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[11-Sep-2025 03:16:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[16-Oct-2025 15:56:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[13-Nov-2025 21:15:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[18-Nov-2025 01:09:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[12-Jan-2026 09:12:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[25-Jan-2026 11:05:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[23-Feb-2026 16:27:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[28-Mar-2026 09:20:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 +[30-Apr-2026 05:02:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/Api/ApiMessagesController.php on line 18 diff --git a/app/Http/Controllers/vendor/Chatify/MessagesController.php b/app/Http/Controllers/vendor/Chatify/MessagesController.php new file mode 100644 index 0000000..c1cd5b6 --- /dev/null +++ b/app/Http/Controllers/vendor/Chatify/MessagesController.php @@ -0,0 +1,483 @@ +user(), + Auth::user(), + $request['channel_name'], + $request['socket_id'] + ); + } + + /** + * Returning the view of the app with the required data. + * + * @param int $id + * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View + */ + public function index( $id = null) + { + $messenger_color = Auth::user()->messenger_color; + return view('Chatify::pages.app', [ + 'id' => $id ?? 0, + 'messengerColor' => $messenger_color ? $messenger_color : Chatify::getFallbackColor(), + 'dark_mode' => Auth::user()->dark_mode < 1 ? 'light' : 'dark', + ]); + } + + + /** + * Fetch data (user, favorite.. etc). + * + * @param Request $request + * @return JsonResponse + */ + public function idFetchData(Request $request) + { + $favorite = Chatify::inFavorite($request['id']); + $fetch = User::where('id', $request['id'])->first(); + if($fetch){ + $userAvatar = Chatify::getUserWithAvatar($fetch)->avatar; + } + return Response::json([ + 'favorite' => $favorite, + 'fetch' => $fetch ?? null, + 'user_avatar' => $userAvatar ?? null, + ]); + } + + /** + * This method to make a links for the attachments + * to be downloadable. + * + * @param string $fileName + * @return \Symfony\Component\HttpFoundation\StreamedResponse|void + */ + public function download($fileName) + { + $filePath = config('chatify.attachments.folder') . '/' . $fileName; + if (Chatify::storage()->exists($filePath)) { + return Chatify::storage()->download($filePath); + } + return abort(404, "Sorry, File does not exist in our server or may have been deleted!"); + } + + /** + * Send a message to database + * + * @param Request $request + * @return JsonResponse + */ + public function send(Request $request) + { + // default variables + $error = (object)[ + 'status' => 0, + 'message' => null + ]; + $attachment = null; + $attachment_title = null; + + // if there is attachment [file] + if ($request->hasFile('file')) { + // allowed extensions + $allowed_images = Chatify::getAllowedImages(); + $allowed_files = Chatify::getAllowedFiles(); + $allowed = array_merge($allowed_images, $allowed_files); + + $file = $request->file('file'); + // check file size + if ($file->getSize() < Chatify::getMaxUploadSize()) { + if (in_array(strtolower($file->extension()), $allowed)) { + // get attachment name + $attachment_title = $file->getClientOriginalName(); + // upload attachment and store the new name + $attachment = Str::uuid() . "." . $file->extension(); + $file->storeAs(config('chatify.attachments.folder'), $attachment, config('chatify.storage_disk_name')); + } else { + $error->status = 1; + $error->message = "File extension not allowed!"; + } + } else { + $error->status = 1; + $error->message = "File size you are trying to upload is too large!"; + } + } + + if (!$error->status) { + $message = Chatify::newMessage([ + 'from_id' => Auth::user()->id, + 'to_id' => $request['id'], + 'body' => htmlentities(trim($request['message']), ENT_QUOTES, 'UTF-8'), + 'attachment' => ($attachment) ? json_encode((object)[ + 'new_name' => $attachment, + 'old_name' => htmlentities(trim($attachment_title), ENT_QUOTES, 'UTF-8'), + ]) : null, + ]); + $messageData = Chatify::parseMessage($message); + if (Auth::user()->id != $request['id']) { + Chatify::push("private-chatify.".$request['id'], 'messaging', [ + 'from_id' => Auth::user()->id, + 'to_id' => $request['id'], + 'message' => Chatify::messageCard($messageData, true) + ]); + } + } + + // send the response + return Response::json([ + 'status' => '200', + 'error' => $error, + 'message' => Chatify::messageCard(@$messageData), + 'tempID' => $request['temporaryMsgId'], + ]); + } + + /** + * fetch [user/group] messages from database + * + * @param Request $request + * @return JsonResponse + */ + public function fetch(Request $request) + { + $query = Chatify::fetchMessagesQuery($request['id'])->latest(); + $messages = $query->paginate($request->per_page ?? $this->perPage); + $totalMessages = $messages->total(); + $lastPage = $messages->lastPage(); + $response = [ + 'total' => $totalMessages, + 'last_page' => $lastPage, + 'last_message_id' => collect($messages->items())->last()->id ?? null, + 'messages' => '', + ]; + + // if there is no messages yet. + if ($totalMessages < 1) { + $response['messages'] ='

Say \'hi\' and start messaging

'; + return Response::json($response); + } + if (count($messages->items()) < 1) { + $response['messages'] = ''; + return Response::json($response); + } + $allMessages = null; + foreach ($messages->reverse() as $message) { + $allMessages .= Chatify::messageCard( + Chatify::parseMessage($message) + ); + } + $response['messages'] = $allMessages; + return Response::json($response); + } + + /** + * Make messages as seen + * + * @param Request $request + * @return JsonResponse|void + */ + public function seen(Request $request) + { + // make as seen + $seen = Chatify::makeSeen($request['id']); + // send the response + return Response::json([ + 'status' => $seen, + ], 200); + } + + /** + * Get contacts list + * + * @param Request $request + * @return JsonResponse + */ + public function getContacts(Request $request) + { + // get all users that received/sent message from/to [Auth user] + $users = Message::join('users', function ($join) { + $join->on('ch_messages.from_id', '=', 'users.id') + ->orOn('ch_messages.to_id', '=', 'users.id'); + }) + ->where(function ($q) { + $q->where('ch_messages.from_id', Auth::user()->id) + ->orWhere('ch_messages.to_id', Auth::user()->id); + }) + ->where('users.id','!=',Auth::user()->id) + ->select('users.*',DB::raw('MAX(ch_messages.created_at) max_created_at')) + ->orderBy('max_created_at', 'desc') + ->groupBy('users.id') + ->paginate($request->per_page ?? $this->perPage); + + $usersList = $users->items(); + + if (count($usersList) > 0) { + $contacts = ''; + foreach ($usersList as $user) { + $contacts .= Chatify::getContactItem($user); + } + } else { + $contacts = '

Your contact list is empty

'; + } + + return Response::json([ + 'contacts' => $contacts, + 'total' => $users->total() ?? 0, + 'last_page' => $users->lastPage() ?? 1, + ], 200); + } + + /** + * Update user's list item data + * + * @param Request $request + * @return JsonResponse + */ + public function updateContactItem(Request $request) + { + // Get user data + $user = User::where('id', $request['user_id'])->first(); + if(!$user){ + return Response::json([ + 'message' => 'User not found!', + ], 401); + } + $contactItem = Chatify::getContactItem($user); + + // send the response + return Response::json([ + 'contactItem' => $contactItem, + ], 200); + } + + /** + * Put a user in the favorites list + * + * @param Request $request + * @return JsonResponse|void + */ + public function favorite(Request $request) + { + $userId = $request['user_id']; + // check action [star/unstar] + $favoriteStatus = Chatify::inFavorite($userId) ? 0 : 1; + Chatify::makeInFavorite($userId, $favoriteStatus); + + // send the response + return Response::json([ + 'status' => @$favoriteStatus, + ], 200); + } + + /** + * Get favorites list + * + * @param Request $request + * @return JsonResponse|void + */ + public function getFavorites(Request $request) + { + $favoritesList = null; + $favorites = Favorite::where('user_id', Auth::user()->id); + foreach ($favorites->get() as $favorite) { + // get user data + $user = User::where('id', $favorite->favorite_id)->first(); + $favoritesList .= view('Chatify::layouts.favorite', [ + 'user' => $user, + ]); + } + // send the response + return Response::json([ + 'count' => $favorites->count(), + 'favorites' => $favorites->count() > 0 + ? $favoritesList + : 0, + ], 200); + } + + /** + * Search in messenger + * + * @param Request $request + * @return JsonResponse|void + */ + public function search(Request $request) + { + $getRecords = null; + $input = trim(filter_var($request['input'])); + $records = User::where('id','!=',Auth::user()->id) + ->where('name', 'LIKE', "%{$input}%") + ->paginate($request->per_page ?? $this->perPage); + foreach ($records->items() as $record) { + $getRecords .= view('Chatify::layouts.listItem', [ + 'get' => 'search_item', + 'user' => Chatify::getUserWithAvatar($record), + ])->render(); + } + if($records->total() < 1){ + $getRecords = '

Nothing to show.

'; + } + // send the response + return Response::json([ + 'records' => $getRecords, + 'total' => $records->total(), + 'last_page' => $records->lastPage() + ], 200); + } + + /** + * Get shared photos + * + * @param Request $request + * @return JsonResponse|void + */ + public function sharedPhotos(Request $request) + { + $shared = Chatify::getSharedPhotos($request['user_id']); + $sharedPhotos = null; + + // shared with its template + for ($i = 0; $i < count($shared); $i++) { + $sharedPhotos .= view('Chatify::layouts.listItem', [ + 'get' => 'sharedPhoto', + 'image' => Chatify::getAttachmentUrl($shared[$i]), + ])->render(); + } + // send the response + return Response::json([ + 'shared' => count($shared) > 0 ? $sharedPhotos : '

Nothing shared yet

', + ], 200); + } + + /** + * Delete conversation + * + * @param Request $request + * @return JsonResponse + */ + public function deleteConversation(Request $request) + { + // delete + $delete = Chatify::deleteConversation($request['id']); + + // send the response + return Response::json([ + 'deleted' => $delete ? 1 : 0, + ], 200); + } + + /** + * Delete message + * + * @param Request $request + * @return JsonResponse + */ + public function deleteMessage(Request $request) + { + // delete + $delete = Chatify::deleteMessage($request['id']); + + // send the response + return Response::json([ + 'deleted' => $delete ? 1 : 0, + ], 200); + } + + public function updateSettings(Request $request) + { + $msg = null; + $error = $success = 0; + + // dark mode + if ($request['dark_mode']) { + $request['dark_mode'] == "dark" + ? User::where('id', Auth::user()->id)->update(['dark_mode' => 1]) // Make Dark + : User::where('id', Auth::user()->id)->update(['dark_mode' => 0]); // Make Light + } + + // If messenger color selected + if ($request['messengerColor']) { + $messenger_color = trim(filter_var($request['messengerColor'])); + User::where('id', Auth::user()->id) + ->update(['messenger_color' => $messenger_color]); + } + // if there is a [file] + if ($request->hasFile('avatar')) { + // allowed extensions + $allowed_images = Chatify::getAllowedImages(); + + $file = $request->file('avatar'); + // check file size + if ($file->getSize() < Chatify::getMaxUploadSize()) { + if (in_array(strtolower($file->extension()), $allowed_images)) { + // delete the older one + if (Auth::user()->avatar != config('chatify.user_avatar.default')) { + $avatar = Auth::user()->avatar; + if (Chatify::storage()->exists($avatar)) { + Chatify::storage()->delete($avatar); + } + } + // upload + $avatar = Str::uuid() . "." . $file->extension(); + $update = User::where('id', Auth::user()->id)->update(['avatar' => $avatar]); + $file->storeAs(config('chatify.user_avatar.folder'), $avatar, config('chatify.storage_disk_name')); + $success = $update ? 1 : 0; + } else { + $msg = "File extension not allowed!"; + $error = 1; + } + } else { + $msg = "File size you are trying to upload is too large!"; + $error = 1; + } + } + + // send the response + return Response::json([ + 'status' => $success ? 1 : 0, + 'error' => $error ? 1 : 0, + 'message' => $error ? $msg : 0, + ], 200); + } + + /** + * Set user's active status + * + * @param Request $request + * @return JsonResponse + */ + public function setActiveStatus(Request $request) + { + $activeStatus = $request['status'] > 0 ? 1 : 0; + $status = User::where('id', Auth::user()->id)->update(['active_status' => $activeStatus]); + return Response::json([ + 'status' => $status, + ], 200); + } +} diff --git a/app/Http/Controllers/vendor/Chatify/error_log b/app/Http/Controllers/vendor/Chatify/error_log new file mode 100644 index 0000000..ec52caf --- /dev/null +++ b/app/Http/Controllers/vendor/Chatify/error_log @@ -0,0 +1,152 @@ +[24-Jun-2024 04:31:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[25-Jun-2024 23:09:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[28-Jun-2024 20:06:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[28-Jun-2024 23:36:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[28-Jul-2024 09:34:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[03-Aug-2024 00:41:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[03-Aug-2024 00:41:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[25-Aug-2024 15:21:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[25-Aug-2024 17:37:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[31-Aug-2024 23:56:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[03-Oct-2024 19:41:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[07-Nov-2024 11:28:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[22-Nov-2024 21:48:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[07-Dec-2024 09:58:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[09-Jan-2025 16:06:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[10-Feb-2025 14:21:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[12-Feb-2025 15:16:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[12-Feb-2025 15:18:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[15-Mar-2025 02:28:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[11-Apr-2025 03:34:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[09-May-2025 00:37:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[30-May-2025 14:22:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[06-Jun-2025 04:40:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[04-Jul-2025 02:36:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[01-Aug-2025 12:57:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[29-Aug-2025 03:55:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[29-Aug-2025 21:11:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[31-Aug-2025 11:49:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[02-Sep-2025 15:47:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[01-Oct-2025 18:32:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[30-Oct-2025 17:10:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[13-Nov-2025 10:06:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[26-Dec-2025 05:58:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[21-Feb-2026 05:48:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[04-Mar-2026 17:43:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[09-Mar-2026 04:23:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[08-Apr-2026 14:24:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 +[06-May-2026 02:25:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Routing\Controller" not found in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php on line 17 diff --git a/app/Http/Middleware/RedirectBasedOnRole.php b/app/Http/Middleware/RedirectBasedOnRole.php new file mode 100644 index 0000000..693bf55 --- /dev/null +++ b/app/Http/Middleware/RedirectBasedOnRole.php @@ -0,0 +1,39 @@ +user_role == 'user') { + if ($request->route()->getName() !== 'dashboard') { + return redirect()->route('dashboard'); + } + } elseif ($user->user_role == 'doctor') { + // redirect to doctor dashboard (TODO) + // if ($request->route()->getName() !== 'doctor.dashboard') { + // return redirect()->route('doctor.dashboard'); + // } + } elseif ($user->user_role == 'admin') { + if ($request->route()->getName() !== 'admin.dashboard') { + return redirect()->route('admin.dashboard'); + } + } + } + + return $next($request); + } +} diff --git a/app/Http/Requests/Auth/LoginRequest.php b/app/Http/Requests/Auth/LoginRequest.php new file mode 100644 index 0000000..0da1ae2 --- /dev/null +++ b/app/Http/Requests/Auth/LoginRequest.php @@ -0,0 +1,85 @@ + + */ + public function rules(): array + { + return [ + 'email' => ['required', 'string', 'email'], + 'password' => ['required', 'string'], + ]; + } + + /** + * Attempt to authenticate the request's credentials. + * + * @throws \Illuminate\Validation\ValidationException + */ + public function authenticate() + { + $this->ensureIsNotRateLimited(); + + if (! Auth::attempt($this->only('email', 'password'), $this->boolean('remember'))) { + RateLimiter::hit($this->throttleKey()); + + throw ValidationException::withMessages([ + 'email' => trans('auth.failed'), + ]); + } + + RateLimiter::clear($this->throttleKey()); + } + + /** + * Ensure the login request is not rate limited. + * + * @throws \Illuminate\Validation\ValidationException + */ + public function ensureIsNotRateLimited(): void + { + if (! RateLimiter::tooManyAttempts($this->throttleKey(), 5)) { + return; + } + + event(new Lockout($this)); + + $seconds = RateLimiter::availableIn($this->throttleKey()); + + throw ValidationException::withMessages([ + 'email' => trans('auth.throttle', [ + 'seconds' => $seconds, + 'minutes' => ceil($seconds / 60), + ]), + ]); + } + + /** + * Get the rate limiting throttle key for the request. + */ + public function throttleKey(): string + { + return Str::transliterate(Str::lower($this->string('email')).'|'.$this->ip()); + } +} diff --git a/app/Http/Requests/Auth/error_log b/app/Http/Requests/Auth/error_log new file mode 100644 index 0000000..749ea27 --- /dev/null +++ b/app/Http/Requests/Auth/error_log @@ -0,0 +1,148 @@ +[23-Jun-2024 15:57:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[25-Jun-2024 09:07:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[26-Jun-2024 17:52:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[27-Jun-2024 17:43:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[15-Jul-2024 15:39:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[25-Jul-2024 21:09:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[03-Aug-2024 00:41:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[03-Aug-2024 00:41:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[01-Sep-2024 08:27:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[04-Oct-2024 07:25:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[07-Nov-2024 02:43:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[22-Nov-2024 21:48:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[07-Dec-2024 04:32:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[02-Jan-2025 12:23:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[09-Jan-2025 10:02:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[11-Feb-2025 01:36:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[12-Feb-2025 15:18:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[21-Mar-2025 19:52:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[28-Mar-2025 21:02:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[07-Apr-2025 15:59:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[28-Apr-2025 07:34:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[25-May-2025 22:31:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[28-Jun-2025 19:21:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[24-Aug-2025 01:53:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[27-Aug-2025 02:13:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[19-Sep-2025 05:52:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[21-Sep-2025 09:15:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[25-Sep-2025 04:22:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[24-Oct-2025 08:45:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[13-Nov-2025 04:17:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[24-Nov-2025 03:30:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[24-Jan-2026 13:17:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[12-Feb-2026 19:24:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[04-Mar-2026 03:38:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[17-Mar-2026 04:24:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[19-Apr-2026 07:18:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 +[08-May-2026 16:21:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php:12 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/Auth/LoginRequest.php on line 12 diff --git a/app/Http/Requests/ProfileUpdateRequest.php b/app/Http/Requests/ProfileUpdateRequest.php new file mode 100644 index 0000000..93b0022 --- /dev/null +++ b/app/Http/Requests/ProfileUpdateRequest.php @@ -0,0 +1,23 @@ + + */ + public function rules(): array + { + return [ + 'name' => ['required', 'string', 'max:255'], + 'email' => ['required', 'string', 'lowercase', 'email', 'max:255', Rule::unique(User::class)->ignore($this->user()->id)], + ]; + } +} diff --git a/app/Http/Requests/error_log b/app/Http/Requests/error_log new file mode 100644 index 0000000..df20d36 --- /dev/null +++ b/app/Http/Requests/error_log @@ -0,0 +1,176 @@ +[23-Jun-2024 11:07:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[25-Jun-2024 06:39:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[26-Jun-2024 14:05:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[27-Jun-2024 14:04:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[30-Jun-2024 08:24:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[07-Jul-2024 07:08:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[23-Jul-2024 12:17:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[03-Aug-2024 00:41:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[03-Aug-2024 00:41:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[26-Aug-2024 15:07:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[28-Sep-2024 15:12:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[09-Oct-2024 10:07:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[21-Oct-2024 12:56:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[31-Oct-2024 04:12:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[22-Nov-2024 21:48:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[02-Dec-2024 12:37:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[02-Jan-2025 12:38:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[31-Jan-2025 05:17:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[04-Feb-2025 07:41:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[06-Feb-2025 04:41:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[04-Mar-2025 07:45:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[20-Mar-2025 02:06:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[05-Apr-2025 23:16:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[03-May-2025 20:58:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[31-May-2025 12:49:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[28-Jun-2025 21:51:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[26-Jul-2025 18:26:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[24-Aug-2025 02:09:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[30-Aug-2025 21:34:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[02-Sep-2025 01:13:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[02-Sep-2025 15:36:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[12-Sep-2025 10:20:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[21-Sep-2025 09:19:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[30-Sep-2025 21:48:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[30-Oct-2025 08:56:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[13-Nov-2025 01:18:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[30-Nov-2025 07:49:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[01-Feb-2026 20:01:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[10-Feb-2026 19:06:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[18-Feb-2026 01:41:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[15-Mar-2026 11:06:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[12-Apr-2026 05:10:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[12-Apr-2026 12:38:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 +[17-Apr-2026 00:07:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Http\FormRequest" not found in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Http/Requests/ProfileUpdateRequest.php on line 9 diff --git a/app/Models/ChFavorite.php b/app/Models/ChFavorite.php new file mode 100644 index 0000000..16d1106 --- /dev/null +++ b/app/Models/ChFavorite.php @@ -0,0 +1,11 @@ +belongsTo(User::class, 'patient_id'); + } + + public function doctor() + { + return $this->belongsTo(User::class, 'doctor_id'); + } + + public function result() + { + return $this->hasOne(Result::class, 'consultation_id'); + } +} diff --git a/app/Models/HealthData.php b/app/Models/HealthData.php new file mode 100644 index 0000000..4b96ca9 --- /dev/null +++ b/app/Models/HealthData.php @@ -0,0 +1,30 @@ +belongsTo(User::class, 'users_id'); + } +} diff --git a/app/Models/Notification.php b/app/Models/Notification.php new file mode 100644 index 0000000..4a1963e --- /dev/null +++ b/app/Models/Notification.php @@ -0,0 +1,26 @@ +belongsTo(User::class); + } + + public function consultation() + { + return $this->belongsTo(Consultation::class); + } +} diff --git a/app/Models/PhysicalActivity.php b/app/Models/PhysicalActivity.php new file mode 100644 index 0000000..a130128 --- /dev/null +++ b/app/Models/PhysicalActivity.php @@ -0,0 +1,53 @@ +belongsTo(User::class, 'users_id'); + } + + public function calculateCaloriesBurned() + { + $user = $this->user; + $healthData = $user->healthDatas()->latest()->first(); + $weight = $healthData ? $healthData->weight : 0; + + $duration = $this->duration / 3600; // Convert duration from seconds to minutes + $caloriesBurned = 0; + + switch ($this->type) { + case 'bicycle': + $caloriesBurned = 0.061 * $weight * $duration; + break; + case 'Run': + $caloriesBurned = 9.8 * $weight * $duration; + break; + case 'walk': + $caloriesBurned = 0.035 * $weight * $duration; + break; + default: + break; + } + + return round($caloriesBurned, 2); + } +} diff --git a/app/Models/Result.php b/app/Models/Result.php new file mode 100644 index 0000000..297f3b3 --- /dev/null +++ b/app/Models/Result.php @@ -0,0 +1,37 @@ +belongsTo(User::class, 'patient_id'); + } + + public function doctor() + { + return $this->belongsTo(User::class, 'doctor_id'); + } + + public function consultation() + { + return $this->belongsTo(Consultation::class, 'consultation_id'); + } +} \ No newline at end of file diff --git a/app/Models/User.php b/app/Models/User.php new file mode 100644 index 0000000..45c0fce --- /dev/null +++ b/app/Models/User.php @@ -0,0 +1,72 @@ + + */ + protected $fillable = [ + 'id', + 'user_role', + 'username', + 'password', + 'name', + 'email', + 'telepon', + 'alamat', + 'gender' + ]; + /** + * The attributes that should be hidden for serialization. + * + * @var array + */ + protected $hidden = [ + 'password', + 'remember_token', + ]; + + /** + * Get the attributes that should be cast. + * + * @return array + */ + protected function casts(): array + { + return [ + 'email_verified_at' => 'datetime', + 'password' => 'hashed', + ]; + } + + public function physicalActivities() + { + return $this->hasMany(PhysicalActivity::class, 'users_id'); + } + + public function healthDatas() + { + return $this->hasMany(HealthData::class, 'users_id'); + } + + public function patientResults() + { + return $this->hasMany(Result::class, 'patient_id'); + } + + public function doctorResults() + { + return $this->hasMany(Result::class, 'doctor_id'); + } +} diff --git a/app/Models/error_log b/app/Models/error_log new file mode 100644 index 0000000..ab1f10d --- /dev/null +++ b/app/Models/error_log @@ -0,0 +1,1912 @@ +[23-Jun-2024 17:42:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[23-Jun-2024 17:42:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[23-Jun-2024 17:42:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[23-Jun-2024 17:43:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[23-Jun-2024 17:43:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[23-Jun-2024 17:44:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[23-Jun-2024 17:46:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[23-Jun-2024 17:48:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[25-Jun-2024 11:19:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[25-Jun-2024 11:19:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[25-Jun-2024 11:19:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[25-Jun-2024 11:19:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[25-Jun-2024 12:20:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[25-Jun-2024 14:15:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[25-Jun-2024 14:16:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[25-Jun-2024 14:20:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[27-Jun-2024 19:30:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[27-Jun-2024 19:30:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[27-Jun-2024 19:30:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[27-Jun-2024 19:31:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[27-Jun-2024 19:31:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[27-Jun-2024 19:31:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[27-Jun-2024 19:43:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[27-Jun-2024 19:43:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[27-Jun-2024 19:44:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[27-Jun-2024 19:46:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[27-Jun-2024 23:52:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[27-Jun-2024 23:52:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[27-Jun-2024 23:52:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[27-Jun-2024 23:52:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[27-Jun-2024 23:54:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[27-Jun-2024 23:54:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[29-Jun-2024 13:48:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[29-Jun-2024 13:54:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[29-Jun-2024 15:57:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[29-Jun-2024 15:58:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[29-Jun-2024 16:00:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[29-Jun-2024 16:42:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[29-Jun-2024 17:12:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[29-Jun-2024 17:22:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[30-Jun-2024 04:06:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[01-Jul-2024 18:04:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[01-Jul-2024 18:11:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[02-Jul-2024 02:16:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[02-Jul-2024 19:39:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[03-Jul-2024 02:34:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[04-Jul-2024 00:33:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[04-Jul-2024 10:02:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[04-Jul-2024 23:44:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[05-Jul-2024 08:56:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[06-Jul-2024 00:29:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[06-Jul-2024 07:29:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[07-Jul-2024 01:32:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[07-Jul-2024 03:14:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[07-Jul-2024 03:55:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[09-Jul-2024 09:59:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[09-Jul-2024 17:10:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[24-Jul-2024 15:07:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[28-Jul-2024 10:06:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[28-Jul-2024 10:06:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[31-Jul-2024 15:26:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[03-Aug-2024 00:41:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[03-Aug-2024 00:41:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[03-Aug-2024 00:41:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[03-Aug-2024 00:41:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[03-Aug-2024 00:41:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[03-Aug-2024 00:41:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[03-Aug-2024 00:41:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[03-Aug-2024 00:41:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[03-Aug-2024 00:41:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[03-Aug-2024 00:41:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[03-Aug-2024 00:41:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[03-Aug-2024 00:41:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[03-Aug-2024 00:41:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[03-Aug-2024 00:41:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[03-Aug-2024 00:41:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[03-Aug-2024 00:41:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[13-Aug-2024 15:06:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[17-Aug-2024 06:19:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[17-Aug-2024 16:14:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[17-Aug-2024 16:14:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[17-Aug-2024 16:14:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[17-Aug-2024 16:14:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[17-Aug-2024 16:14:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[17-Aug-2024 16:14:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[17-Aug-2024 16:14:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[17-Aug-2024 16:14:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[23-Aug-2024 22:00:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[23-Aug-2024 23:57:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[24-Aug-2024 03:58:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[24-Aug-2024 06:21:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[24-Aug-2024 06:27:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[24-Aug-2024 06:37:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[24-Aug-2024 07:41:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[24-Aug-2024 08:52:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[28-Sep-2024 06:29:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[28-Sep-2024 08:09:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[28-Sep-2024 08:28:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[28-Sep-2024 10:07:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[28-Sep-2024 18:42:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[28-Sep-2024 19:38:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[28-Sep-2024 21:20:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[29-Sep-2024 15:42:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[07-Oct-2024 04:58:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[09-Oct-2024 03:36:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[09-Oct-2024 05:28:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[09-Oct-2024 06:22:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[09-Oct-2024 12:54:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[10-Oct-2024 14:12:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[12-Oct-2024 00:06:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[12-Oct-2024 05:20:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[15-Oct-2024 18:31:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[16-Oct-2024 05:15:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[16-Oct-2024 08:04:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[31-Oct-2024 08:21:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[31-Oct-2024 10:54:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[31-Oct-2024 10:54:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[31-Oct-2024 11:22:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[31-Oct-2024 14:20:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[31-Oct-2024 14:40:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[31-Oct-2024 18:27:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[31-Oct-2024 19:33:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[22-Nov-2024 21:48:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[22-Nov-2024 21:48:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[22-Nov-2024 21:48:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[22-Nov-2024 21:48:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[22-Nov-2024 21:48:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[22-Nov-2024 21:48:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[22-Nov-2024 21:48:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[22-Nov-2024 21:48:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[23-Nov-2024 21:09:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[25-Nov-2024 11:14:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[27-Nov-2024 01:26:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[28-Nov-2024 02:59:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[29-Nov-2024 01:25:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[29-Nov-2024 09:22:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[30-Nov-2024 22:33:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[01-Dec-2024 21:31:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[02-Dec-2024 01:49:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[02-Dec-2024 01:52:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[02-Dec-2024 02:55:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[02-Dec-2024 03:33:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[02-Dec-2024 07:50:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[02-Dec-2024 07:52:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[02-Dec-2024 08:36:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[02-Dec-2024 13:01:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[02-Dec-2024 13:38:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[09-Dec-2024 10:53:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[02-Jan-2025 01:08:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[02-Jan-2025 02:17:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[02-Jan-2025 03:33:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[02-Jan-2025 03:43:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[02-Jan-2025 04:21:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[02-Jan-2025 10:54:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[02-Jan-2025 11:05:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[02-Jan-2025 11:52:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[09-Jan-2025 09:18:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[11-Jan-2025 00:38:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[11-Jan-2025 02:06:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[11-Jan-2025 02:52:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[13-Jan-2025 13:58:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[15-Jan-2025 13:41:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[21-Jan-2025 04:04:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[21-Jan-2025 07:41:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[23-Jan-2025 01:21:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[24-Jan-2025 00:36:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[24-Jan-2025 20:56:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[28-Jan-2025 17:34:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[29-Jan-2025 03:16:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[30-Jan-2025 19:58:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[30-Jan-2025 20:23:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[30-Jan-2025 20:51:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[30-Jan-2025 21:55:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[31-Jan-2025 00:59:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[31-Jan-2025 03:06:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[31-Jan-2025 05:41:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[31-Jan-2025 08:10:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[03-Feb-2025 06:42:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[03-Feb-2025 06:49:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[03-Feb-2025 07:02:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[03-Feb-2025 13:54:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[03-Feb-2025 17:22:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[03-Feb-2025 17:52:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[03-Feb-2025 18:47:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[04-Feb-2025 06:01:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[05-Feb-2025 18:08:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[05-Feb-2025 18:23:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[05-Feb-2025 18:31:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[05-Feb-2025 18:44:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[05-Feb-2025 19:10:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[06-Feb-2025 07:01:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[06-Feb-2025 09:24:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[06-Feb-2025 09:52:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[06-Feb-2025 10:06:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[23-Feb-2025 17:22:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[03-Mar-2025 07:27:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[03-Mar-2025 12:06:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[03-Mar-2025 22:29:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[03-Mar-2025 23:29:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[03-Mar-2025 23:39:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[04-Mar-2025 05:25:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[05-Mar-2025 08:14:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[05-Mar-2025 08:28:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[07-Mar-2025 10:21:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[07-Mar-2025 11:01:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[12-Mar-2025 01:49:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[15-Mar-2025 02:42:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[21-Mar-2025 03:15:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[22-Mar-2025 06:20:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[25-Mar-2025 18:31:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[28-Mar-2025 11:17:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[28-Mar-2025 12:12:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[28-Mar-2025 15:57:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[29-Mar-2025 04:59:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[03-Apr-2025 10:44:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[03-Apr-2025 11:34:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[04-Apr-2025 04:09:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[05-Apr-2025 20:47:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[05-Apr-2025 21:29:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[05-Apr-2025 23:59:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[06-Apr-2025 02:43:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[09-Apr-2025 05:12:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[09-Apr-2025 07:47:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[09-Apr-2025 15:57:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[09-Apr-2025 16:08:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[09-Apr-2025 16:19:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[09-Apr-2025 16:30:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[09-Apr-2025 16:42:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[09-Apr-2025 16:53:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[09-Apr-2025 20:15:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[09-Apr-2025 20:33:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[13-Apr-2025 09:02:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[13-Apr-2025 10:26:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[13-Apr-2025 11:20:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[15-Apr-2025 23:05:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[22-Apr-2025 19:18:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[24-Apr-2025 11:10:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[24-Apr-2025 19:46:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[25-Apr-2025 10:07:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[28-Apr-2025 02:47:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[01-May-2025 19:36:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[02-May-2025 04:00:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[02-May-2025 07:00:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[09-May-2025 01:18:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[09-May-2025 02:55:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[09-May-2025 05:27:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[09-May-2025 09:33:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[09-May-2025 09:56:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[09-May-2025 10:03:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[09-May-2025 13:52:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[11-May-2025 13:31:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[11-May-2025 17:56:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[11-May-2025 18:51:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[11-May-2025 23:24:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[17-May-2025 18:33:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[20-May-2025 03:21:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[27-May-2025 20:23:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[29-May-2025 14:16:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[05-Jun-2025 20:59:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[05-Jun-2025 21:42:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[05-Jun-2025 23:15:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[05-Jun-2025 23:29:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[05-Jun-2025 23:42:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[06-Jun-2025 00:23:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[06-Jun-2025 06:42:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[17-Jun-2025 10:56:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[28-Jun-2025 20:37:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[09-Jul-2025 18:31:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[09-Jul-2025 19:06:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[09-Jul-2025 19:39:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[09-Jul-2025 21:13:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[09-Jul-2025 22:33:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[10-Jul-2025 04:31:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[13-Jul-2025 17:17:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[15-Jul-2025 18:42:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[30-Jul-2025 12:11:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[31-Jul-2025 16:05:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[02-Aug-2025 17:03:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[07-Aug-2025 06:27:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[07-Aug-2025 09:46:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[07-Aug-2025 10:23:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[07-Aug-2025 10:56:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[07-Aug-2025 13:47:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[16-Aug-2025 13:04:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[21-Aug-2025 01:44:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[24-Aug-2025 08:48:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[24-Aug-2025 10:52:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[24-Aug-2025 16:30:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[27-Aug-2025 05:57:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[29-Aug-2025 01:41:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[30-Aug-2025 21:42:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[30-Aug-2025 21:44:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[30-Aug-2025 21:47:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[30-Aug-2025 23:34:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[31-Aug-2025 05:57:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[09-Sep-2025 07:00:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[10-Sep-2025 18:49:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[10-Sep-2025 21:21:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[10-Sep-2025 22:43:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[10-Sep-2025 22:57:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[11-Sep-2025 00:51:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[11-Sep-2025 02:37:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[13-Sep-2025 12:11:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[20-Sep-2025 10:18:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[20-Sep-2025 10:43:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[20-Sep-2025 10:59:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[20-Sep-2025 11:01:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[20-Sep-2025 11:04:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[25-Sep-2025 03:32:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[03-Oct-2025 05:39:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[03-Oct-2025 05:55:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[12-Oct-2025 10:48:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[12-Oct-2025 13:18:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[12-Oct-2025 13:47:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[12-Oct-2025 14:13:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[12-Oct-2025 19:46:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[15-Oct-2025 22:41:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[16-Oct-2025 05:53:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[24-Oct-2025 03:24:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[31-Oct-2025 01:50:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[31-Oct-2025 16:42:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[11-Nov-2025 10:02:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[11-Nov-2025 14:57:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[11-Nov-2025 16:21:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[12-Nov-2025 17:48:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[12-Nov-2025 18:42:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[13-Nov-2025 01:09:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[13-Nov-2025 02:40:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[14-Nov-2025 23:13:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[14-Nov-2025 23:44:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[15-Nov-2025 04:55:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[17-Nov-2025 14:10:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[24-Nov-2025 05:31:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[25-Dec-2025 15:27:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[08-Jan-2026 06:12:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[09-Jan-2026 04:31:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[10-Jan-2026 04:08:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[10-Jan-2026 05:26:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[10-Jan-2026 17:56:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[11-Jan-2026 07:47:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[11-Jan-2026 09:18:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[11-Jan-2026 15:26:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[11-Jan-2026 19:16:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[12-Jan-2026 01:23:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[12-Jan-2026 18:32:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[12-Jan-2026 22:42:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[13-Jan-2026 13:01:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[13-Jan-2026 22:10:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[14-Jan-2026 12:43:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[14-Jan-2026 16:53:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[14-Jan-2026 22:32:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[15-Jan-2026 12:53:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[15-Jan-2026 22:12:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[16-Jan-2026 12:41:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[16-Jan-2026 18:32:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[16-Jan-2026 22:52:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[17-Jan-2026 13:08:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[17-Jan-2026 22:50:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[18-Jan-2026 12:39:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[18-Jan-2026 18:51:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[18-Jan-2026 22:11:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[19-Jan-2026 12:32:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[19-Jan-2026 22:11:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[20-Jan-2026 19:05:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[20-Jan-2026 22:33:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[21-Jan-2026 23:05:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[22-Jan-2026 18:47:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[22-Jan-2026 22:51:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[23-Jan-2026 23:16:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[24-Jan-2026 19:03:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[24-Jan-2026 22:42:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[25-Jan-2026 23:13:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[26-Jan-2026 18:27:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[27-Jan-2026 22:41:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[28-Jan-2026 18:24:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[29-Jan-2026 04:32:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[29-Jan-2026 19:01:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[30-Jan-2026 18:11:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[30-Jan-2026 22:41:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[01-Feb-2026 19:03:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[01-Feb-2026 20:13:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[01-Feb-2026 20:15:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[01-Feb-2026 20:15:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[01-Feb-2026 20:16:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[01-Feb-2026 20:17:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[01-Feb-2026 20:17:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[01-Feb-2026 20:18:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[01-Feb-2026 20:19:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[01-Feb-2026 22:50:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[02-Feb-2026 00:22:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[02-Feb-2026 03:37:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[02-Feb-2026 04:36:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[02-Feb-2026 05:57:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[03-Feb-2026 00:40:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[03-Feb-2026 18:41:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[03-Feb-2026 23:07:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[04-Feb-2026 22:39:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[05-Feb-2026 03:22:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[05-Feb-2026 11:17:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[05-Feb-2026 14:25:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[05-Feb-2026 19:35:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[05-Feb-2026 20:03:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[05-Feb-2026 23:23:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[07-Feb-2026 05:20:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[09-Feb-2026 13:39:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[09-Feb-2026 14:29:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[11-Feb-2026 02:03:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[11-Feb-2026 05:44:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[13-Feb-2026 01:45:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[13-Feb-2026 05:51:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[15-Feb-2026 01:36:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[15-Feb-2026 06:54:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[17-Feb-2026 01:14:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[17-Feb-2026 02:43:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[18-Feb-2026 22:42:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[20-Feb-2026 22:50:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[21-Feb-2026 02:37:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[22-Feb-2026 22:49:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[24-Feb-2026 22:32:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[26-Feb-2026 23:09:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[27-Feb-2026 02:57:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[28-Feb-2026 22:59:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[01-Mar-2026 03:23:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[01-Mar-2026 08:04:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[04-Mar-2026 14:51:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[04-Mar-2026 18:45:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[06-Mar-2026 04:11:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[06-Mar-2026 04:51:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[06-Mar-2026 04:52:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[06-Mar-2026 04:52:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[06-Mar-2026 04:53:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[06-Mar-2026 05:13:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[06-Mar-2026 08:50:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[06-Mar-2026 19:29:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[08-Mar-2026 04:03:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[09-Mar-2026 09:47:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[09-Mar-2026 16:51:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[10-Mar-2026 03:58:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[12-Mar-2026 03:40:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[14-Mar-2026 03:51:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[18-Mar-2026 08:17:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[19-Mar-2026 02:22:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[19-Mar-2026 15:41:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[20-Mar-2026 04:58:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[21-Mar-2026 01:27:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[21-Mar-2026 02:35:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[22-Mar-2026 04:59:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[24-Mar-2026 01:11:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[24-Mar-2026 08:42:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[25-Mar-2026 01:43:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[25-Mar-2026 03:13:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[25-Mar-2026 07:59:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[25-Mar-2026 09:47:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[25-Mar-2026 17:47:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[26-Mar-2026 07:20:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[26-Mar-2026 17:42:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[26-Mar-2026 22:25:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[27-Mar-2026 08:15:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[28-Mar-2026 11:42:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[30-Mar-2026 08:10:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[30-Mar-2026 11:29:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[30-Mar-2026 11:31:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[31-Mar-2026 18:03:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[02-Apr-2026 13:03:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[02-Apr-2026 19:41:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[04-Apr-2026 01:18:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[05-Apr-2026 08:02:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/HealthData.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/HealthData.php on line 8 +[05-Apr-2026 12:11:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[05-Apr-2026 12:59:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[05-Apr-2026 15:35:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[05-Apr-2026 21:49:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Consultation.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Consultation.php on line 8 +[08-Apr-2026 00:15:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 +[08-Apr-2026 05:42:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Auth\User" not found in /home/humicpro/public_html/aigo/app/Models/User.php:10 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/User.php on line 10 +[08-Apr-2026 09:13:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChFavorite.php on line 8 +[13-Apr-2026 09:40:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Result.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Result.php on line 8 +[21-Apr-2026 16:26:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/Notification.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/Notification.php on line 8 +[12-May-2026 07:17:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/ChMessage.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/ChMessage.php on line 8 +[12-May-2026 13:31:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Eloquent\Model" not found in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/app/Models/PhysicalActivity.php on line 8 diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php new file mode 100644 index 0000000..452e6b6 --- /dev/null +++ b/app/Providers/AppServiceProvider.php @@ -0,0 +1,24 @@ +handleCommand(new ArgvInput); + +exit($status); diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 0000000..10bafc0 --- /dev/null +++ b/bootstrap/app.php @@ -0,0 +1,22 @@ +withRouting( + web: __DIR__.'/../routes/web.php', + commands: __DIR__.'/../routes/console.php', + channels: __DIR__.'/../routes/channels.php', + health: '/up', + ) + ->withMiddleware(function (Middleware $middleware) { + $middleware->alias([ + 'role' => RedirectBasedOnRole::class + ]); + }) + ->withExceptions(function (Exceptions $exceptions) { + // + })->create(); diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/bootstrap/error_log b/bootstrap/error_log new file mode 100644 index 0000000..4989b4a --- /dev/null +++ b/bootstrap/error_log @@ -0,0 +1,264 @@ +[22-Jun-2024 12:37:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[24-Jun-2024 16:20:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[27-Jun-2024 02:28:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[28-Jun-2024 21:00:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[01-Jul-2024 03:18:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[03-Jul-2024 06:45:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[17-Jul-2024 21:58:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[22-Jul-2024 12:19:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[03-Aug-2024 00:41:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[03-Aug-2024 00:41:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[05-Aug-2024 22:09:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[17-Aug-2024 15:45:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[21-Aug-2024 10:23:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[25-Aug-2024 19:43:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[25-Aug-2024 20:43:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[14-Sep-2024 20:23:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[23-Sep-2024 06:36:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[29-Sep-2024 20:42:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[25-Oct-2024 14:09:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[22-Nov-2024 21:48:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[27-Nov-2024 06:44:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[28-Dec-2024 00:06:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[09-Jan-2025 17:34:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[22-Jan-2025 20:20:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[26-Jan-2025 00:58:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[04-Feb-2025 07:16:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[26-Feb-2025 11:14:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[12-Apr-2025 02:41:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[06-May-2025 07:39:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[05-Jun-2025 21:36:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[04-Jul-2025 09:50:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[01-Aug-2025 15:28:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[14-Aug-2025 03:08:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[24-Aug-2025 18:09:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[02-Sep-2025 03:07:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[21-Sep-2025 09:16:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[22-Sep-2025 21:20:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[01-Oct-2025 06:01:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[26-Oct-2025 16:21:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[30-Oct-2025 06:09:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[19-Jan-2026 18:52:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[22-Jan-2026 00:42:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[23-Jan-2026 18:52:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[25-Jan-2026 19:46:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[27-Jan-2026 18:11:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[29-Jan-2026 23:44:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[31-Jan-2026 18:22:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[01-Feb-2026 20:22:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[02-Feb-2026 22:03:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[04-Feb-2026 21:26:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[06-Feb-2026 23:31:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[11-Feb-2026 01:53:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[13-Feb-2026 02:13:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[15-Feb-2026 01:54:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[17-Feb-2026 01:22:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[18-Feb-2026 23:04:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[21-Feb-2026 19:42:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[22-Feb-2026 22:40:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[26-Feb-2026 22:50:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[28-Feb-2026 23:23:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[03-Mar-2026 19:17:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[06-Mar-2026 00:54:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[20-Mar-2026 13:41:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[22-Mar-2026 22:03:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[28-Apr-2026 00:22:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 +[30-Apr-2026 18:22:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Application" not found in /home/humicpro/public_html/aigo/bootstrap/app.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/bootstrap/app.php on line 8 diff --git a/bootstrap/providers.php b/bootstrap/providers.php new file mode 100644 index 0000000..38b258d --- /dev/null +++ b/bootstrap/providers.php @@ -0,0 +1,5 @@ +=5.0.0" + }, + "require-dev": { + "doctrine/dbal": "^4.0.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Types to use Carbon in Doctrine", + "keywords": [ + "carbon", + "date", + "datetime", + "doctrine", + "time" + ], + "support": { + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2024-02-09T16:56:22+00:00" + }, + { + "name": "clue/redis-protocol", + "version": "v0.3.1", + "source": { + "type": "git", + "url": "https://github.com/clue/php-redis-protocol.git", + "reference": "271b8009887209d930f613ad3b9518f94bd6b51c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/clue/php-redis-protocol/zipball/271b8009887209d930f613ad3b9518f94bd6b51c", + "reference": "271b8009887209d930f613ad3b9518f94bd6b51c", + "shasum": "" + }, + "require": { + "php": ">=5.3" + }, + "type": "library", + "autoload": { + "psr-0": { + "Clue\\Redis\\Protocol": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@lueck.tv" + } + ], + "description": "A streaming redis wire protocol parser and serializer implementation in PHP", + "homepage": "https://github.com/clue/php-redis-protocol", + "keywords": [ + "parser", + "protocol", + "redis", + "serializer", + "streaming" + ], + "support": { + "issues": "https://github.com/clue/php-redis-protocol/issues", + "source": "https://github.com/clue/php-redis-protocol/tree/v0.3.1" + }, + "time": "2017-06-06T16:07:10+00:00" + }, + { + "name": "clue/redis-react", + "version": "v2.7.0", + "source": { + "type": "git", + "url": "https://github.com/clue/reactphp-redis.git", + "reference": "2283690f249e8d93342dd63b5285732d2654e077" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/clue/reactphp-redis/zipball/2283690f249e8d93342dd63b5285732d2654e077", + "reference": "2283690f249e8d93342dd63b5285732d2654e077", + "shasum": "" + }, + "require": { + "clue/redis-protocol": "0.3.*", + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3", + "react/event-loop": "^1.2", + "react/promise": "^3 || ^2.0 || ^1.1", + "react/promise-timer": "^1.9", + "react/socket": "^1.12" + }, + "require-dev": { + "clue/block-react": "^1.5", + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" + }, + "type": "library", + "autoload": { + "psr-4": { + "Clue\\React\\Redis\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering" + } + ], + "description": "Async Redis client implementation, built on top of ReactPHP.", + "homepage": "https://github.com/clue/reactphp-redis", + "keywords": [ + "async", + "client", + "database", + "reactphp", + "redis" + ], + "support": { + "issues": "https://github.com/clue/reactphp-redis/issues", + "source": "https://github.com/clue/reactphp-redis/tree/v2.7.0" + }, + "funding": [ + { + "url": "https://clue.engineering/support", + "type": "custom" + }, + { + "url": "https://github.com/clue", + "type": "github" + } + ], + "time": "2024-01-05T15:54:20+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.2", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "f41715465d65213d644d3141a6a93081be5d3549" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", + "reference": "f41715465d65213d644d3141a6a93081be5d3549", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" + }, + "time": "2022-10-27T11:44:00+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.10", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.10" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2024-02-18T20:23:39+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:56:58+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.3.3", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-webmozart-assert": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2023-08-10T19:36:49+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.2", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" + }, + "require-dev": { + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2023-10-06T06:47:41+00:00" + }, + { + "name": "evenement/evenement", + "version": "v3.0.2", + "source": { + "type": "git", + "url": "https://github.com/igorw/evenement.git", + "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc", + "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^9 || ^6" + }, + "type": "library", + "autoload": { + "psr-4": { + "Evenement\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + } + ], + "description": "Événement is a very simple event dispatching library for PHP", + "keywords": [ + "event-dispatcher", + "event-emitter" + ], + "support": { + "issues": "https://github.com/igorw/evenement/issues", + "source": "https://github.com/igorw/evenement/tree/v3.0.2" + }, + "time": "2023-08-08T05:53:35+00:00" + }, + { + "name": "fruitcake/php-cors", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/fruitcake/php-cors.git", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0", + "symfony/http-foundation": "^4.4|^5.4|^6|^7" + }, + "require-dev": { + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "Fruitcake\\Cors\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barryvdh", + "email": "barryvdh@gmail.com" + } + ], + "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", + "homepage": "https://github.com/fruitcake/php-cors", + "keywords": [ + "cors", + "laravel", + "symfony" + ], + "support": { + "issues": "https://github.com/fruitcake/php-cors/issues", + "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2023-10-12T05:21:21+00:00" + }, + { + "name": "graham-campbell/result-type", + "version": "v1.1.2", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862", + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2023-11-12T22:16:48+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.8.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104", + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.5.3 || ^2.0.1", + "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-curl": "*", + "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.8.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2023-12-03T20:35:24+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.0.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2023-12-03T20:19:20+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.6.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221", + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^8.5.36 || ^9.6.15" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.6.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2023-12-03T20:05:35+00:00" + }, + { + "name": "guzzlehttp/uri-template", + "version": "v1.0.3", + "source": { + "type": "git", + "url": "https://github.com/guzzle/uri-template.git", + "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c", + "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + } + ], + "description": "A polyfill class for uri_template of PHP", + "keywords": [ + "guzzlehttp", + "uri-template" + ], + "support": { + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2023-12-03T19:50:20+00:00" + }, + { + "name": "laravel/framework", + "version": "v11.0.7", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "28eabe9dcdcb017a21ce226eda4538c5c8c93b1c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/28eabe9dcdcb017a21ce226eda4538c5c8c93b1c", + "reference": "28eabe9dcdcb017a21ce226eda4538c5c8c93b1c", + "shasum": "" + }, + "require": { + "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.3.2", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", + "fruitcake/php-cors": "^1.3", + "guzzlehttp/guzzle": "^7.8", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.1.15", + "laravel/serializable-closure": "^1.3", + "league/commonmark": "^2.2.1", + "league/flysystem": "^3.8.0", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^2.72.2|^3.0", + "nunomaduro/termwind": "^2.0", + "php": "^8.2", + "psr/container": "^1.1.1|^2.0.1", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "ramsey/uuid": "^4.7", + "symfony/console": "^7.0", + "symfony/error-handler": "^7.0", + "symfony/finder": "^7.0", + "symfony/http-foundation": "^7.0", + "symfony/http-kernel": "^7.0", + "symfony/mailer": "^7.0", + "symfony/mime": "^7.0", + "symfony/polyfill-php83": "^1.28", + "symfony/process": "^7.0", + "symfony/routing": "^7.0", + "symfony/uid": "^7.0", + "symfony/var-dumper": "^7.0", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.4.1", + "voku/portable-ascii": "^2.0" + }, + "conflict": { + "mockery/mockery": "1.6.8", + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/conditionable": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/process": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version", + "spatie/once": "*" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.235.5", + "ext-gmp": "*", + "fakerphp/faker": "^1.23", + "league/flysystem-aws-s3-v3": "^3.0", + "league/flysystem-ftp": "^3.0", + "league/flysystem-path-prefixing": "^3.3", + "league/flysystem-read-only": "^3.3", + "league/flysystem-sftp-v3": "^3.0", + "mockery/mockery": "^1.6", + "nyholm/psr7": "^1.2", + "orchestra/testbench-core": "^9.0", + "pda/pheanstalk": "^5.0", + "phpstan/phpstan": "^1.4.7", + "phpunit/phpunit": "^10.5|^11.0", + "predis/predis": "^2.0.2", + "resend/resend-php": "^0.10.0", + "symfony/cache": "^7.0", + "symfony/http-client": "^7.0", + "symfony/psr-http-message-bridge": "^7.0" + }, + "suggest": { + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", + "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", + "league/flysystem-read-only": "Required to use read-only disks (^3.3)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", + "mockery/mockery": "Required to use mocking (^1.6).", + "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).", + "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).", + "predis/predis": "Required to use the predis connector (^2.0.2).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", + "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^7.0).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "11.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/", + "src/Illuminate/Conditionable/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-03-15T23:17:58+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.1.16", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "ca6872ab6aec3ab61db3a61f83a6caf764ec7781" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/ca6872ab6aec3ab61db3a61f83a6caf764ec7781", + "reference": "ca6872ab6aec3ab61db3a61f83a6caf764ec7781", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/collections": "^10.0|^11.0", + "php": "^8.1", + "symfony/console": "^6.2|^7.0" + }, + "conflict": { + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" + }, + "require-dev": { + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-mockery": "^1.1" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.1.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.1.16" + }, + "time": "2024-02-21T19:25:27+00:00" + }, + { + "name": "laravel/reverb", + "version": "v1.0.0-beta4", + "source": { + "type": "git", + "url": "https://github.com/laravel/reverb.git", + "reference": "7237ff17a249128218c614a6e0f9cf0a8aca91a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/reverb/zipball/7237ff17a249128218c614a6e0f9cf0a8aca91a9", + "reference": "7237ff17a249128218c614a6e0f9cf0a8aca91a9", + "shasum": "" + }, + "require": { + "clue/redis-react": "^2.6", + "guzzlehttp/psr7": "^2.6", + "illuminate/console": "^10.47|^11.0", + "illuminate/contracts": "^10.47|^11.0", + "illuminate/http": "^10.47|^11.0", + "illuminate/support": "^10.47|^11.0", + "laravel/prompts": "^0.1.15", + "php": "^8.2", + "pusher/pusher-php-server": "^7.2", + "ratchet/rfc6455": "^0.3.1", + "react/promise-timer": "^1.10", + "react/socket": "^1.14", + "symfony/http-foundation": "^6.3|^7.0" + }, + "require-dev": { + "orchestra/testbench": "^8.0|^9.0", + "pestphp/pest": "^2.0", + "phpstan/phpstan": "^1.10", + "ratchet/pawl": "^0.4.1", + "react/async": "^4.0", + "react/http": "^1.9" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Reverb\\ApplicationManagerServiceProvider", + "Laravel\\Reverb\\ReverbServiceProvider" + ], + "aliases": { + "Output": "Laravel\\Reverb\\Output" + } + } + }, + "autoload": { + "psr-4": { + "Laravel\\Reverb\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Joe Dixon", + "email": "joe@laravel.com" + } + ], + "description": "Laravel Reverb provides a real-time WebSocket communication backend for Laravel applications.", + "keywords": [ + "WebSockets", + "laravel", + "real-time", + "websocket" + ], + "support": { + "issues": "https://github.com/laravel/reverb/issues", + "source": "https://github.com/laravel/reverb/tree/v1.0.0-beta4" + }, + "time": "2024-03-18T17:36:49+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v1.3.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "3dbf8a8e914634c48d389c1234552666b3d43754" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754", + "reference": "3dbf8a8e914634c48d389c1234552666b3d43754", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "nesbot/carbon": "^2.61", + "pestphp/pest": "^1.21.3", + "phpstan/phpstan": "^1.8.2", + "symfony/var-dumper": "^5.4.11" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2023-11-08T14:08:06+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.9.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe", + "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "php": "^7.2.5|^8.0", + "psy/psysh": "^0.11.1|^0.12.0", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.5.8|^9.3.3" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)." + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.9.0" + }, + "time": "2024-01-04T16:10:04+00:00" + }, + { + "name": "league/commonmark", + "version": "2.4.2", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf", + "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.30.3", + "commonmark/commonmark.js": "0.30.0", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0 || ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2024-02-02T11:59:32+00:00" + }, + { + "name": "league/config", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2022-12-11T20:36:23+00:00" + }, + { + "name": "league/flysystem", + "version": "3.25.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "abbd664eb4381102c559d358420989f835208f18" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/abbd664eb4381102c559d358420989f835208f18", + "reference": "abbd664eb4381102c559d358420989f835208f18", + "shasum": "" + }, + "require": { + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", + "aws/aws-sdk-php": "3.209.31 || 3.210.0", + "guzzlehttp/guzzle": "<7.0", + "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", + "symfony/http-client": "<5.2" + }, + "require-dev": { + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.295.10", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "microsoft/azure-storage-blob": "^1.1", + "phpseclib/phpseclib": "^3.0.36", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.6.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.25.1" + }, + "funding": [ + { + "url": "https://ecologi.com/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" + } + ], + "time": "2024-03-16T12:53:19+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.25.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/61a6a90d6e999e4ddd9ce5adb356de0939060b92", + "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "source": "https://github.com/thephpleague/flysystem-local/tree/3.25.1" + }, + "funding": [ + { + "url": "https://ecologi.com/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" + } + ], + "time": "2024-03-15T19:58:44+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.15.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", + "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2024-01-28T23:22:08+00:00" + }, + { + "name": "monolog/monolog", + "version": "3.5.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448", + "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2.0", + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-strict-rules": "^1.4", + "phpunit/phpunit": "^10.1", + "predis/predis": "^1.1 || ^2", + "ruflin/elastica": "^7", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/3.5.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2023-10-27T15:32:31+00:00" + }, + { + "name": "munafio/chatify", + "version": "v1.6.3", + "source": { + "type": "git", + "url": "https://github.com/munafio/chatify.git", + "reference": "559ff515fc83a822ed72cdd03ca8e36c574c5a25" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/munafio/chatify/zipball/559ff515fc83a822ed72cdd03ca8e36c574c5a25", + "reference": "559ff515fc83a822ed72cdd03ca8e36c574c5a25", + "shasum": "" + }, + "require": { + "pusher/pusher-php-server": "^6.0|^7.0|^7.1" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Chatify\\ChatifyServiceProvider" + ], + "aliases": { + "Chatify": "Chatify\\Facades\\ChatifyMessenger" + } + } + }, + "autoload": { + "psr-4": { + "Chatify\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Munaf A. Mahdi", + "email": "munafaqeelmahdi@gmail.com" + } + ], + "description": "A package for Laravel PHP Framework to add a complete real-time chat system.", + "homepage": "https://github.com/munafio/chatify", + "keywords": [ + "Messenger", + "chat", + "chatify", + "conversations", + "laravel", + "php", + "pusher", + "real-time", + "realtime" + ], + "support": { + "issues": "https://github.com/munafio/chatify/issues", + "source": "https://github.com/munafio/chatify/tree/v1.6.3" + }, + "time": "2024-03-17T14:21:38+00:00" + }, + { + "name": "nesbot/carbon", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "34ccf6f6b49c915421c7886c88c0cb77f3ebbfd2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/34ccf6f6b49c915421c7886c88c0cb77f3ebbfd2", + "reference": "34ccf6f6b49c915421c7886c88c0cb77f3ebbfd2", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "*", + "ext-json": "*", + "php": "^8.1", + "psr/clock": "^1.0", + "symfony/clock": "^6.3 || ^7.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^3.6.3 || ^4.0", + "doctrine/orm": "^2.15.2 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.18.0", + "kylekatarnls/multi-tester": "^2.2.0", + "ondrejmirtes/better-reflection": "^6.11.0.0", + "phpmd/phpmd": "^2.13.0", + "phpstan/extension-installer": "^1.3.0", + "phpstan/phpstan": "^1.10.20", + "phpunit/phpunit": "^10.2.2", + "squizlabs/php_codesniffer": "^3.7.2" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev", + "dev-2.x": "2.x-dev" + }, + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "support": { + "docs": "https://carbon.nesbot.com/docs", + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, + "funding": [ + { + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", + "type": "tidelift" + } + ], + "time": "2024-03-13T12:42:37+00:00" + }, + { + "name": "nette/schema", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "shasum": "" + }, + "require": { + "nette/utils": "^4.0", + "php": "8.1 - 8.3" + }, + "require-dev": { + "nette/tester": "^2.4", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.3.0" + }, + "time": "2023-12-11T11:54:22+00:00" + }, + { + "name": "nette/utils", + "version": "v4.0.4", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218", + "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218", + "shasum": "" + }, + "require": { + "php": ">=8.0 <8.4" + }, + "conflict": { + "nette/finder": "<3", + "nette/schema": "<1.2.2" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "^2.5", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.9" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.0.4" + }, + "time": "2024-01-17T16:50:36+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.0.2", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13", + "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2" + }, + "time": "2024-03-05T20:51:40+00:00" + }, + { + "name": "nunomaduro/termwind", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/58c4c58cf23df7f498daeb97092e34f5259feb6a", + "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.2", + "symfony/console": "^7.0.4" + }, + "require-dev": { + "ergebnis/phpstan-rules": "^2.2.0", + "illuminate/console": "^11.0.0", + "laravel/pint": "^1.14.0", + "mockery/mockery": "^1.6.7", + "pestphp/pest": "^2.34.1", + "phpstan/phpstan": "^1.10.59", + "phpstan/phpstan-strict-rules": "^1.5.2", + "symfony/var-dumper": "^7.0.4", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Its like Tailwind CSS, but for the console.", + "keywords": [ + "cli", + "console", + "css", + "package", + "php", + "style" + ], + "support": { + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v2.0.1" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://github.com/xiCO2k", + "type": "github" + } + ], + "time": "2024-03-06T16:17:14+00:00" + }, + { + "name": "paragonie/random_compat", + "version": "v9.99.100", + "source": { + "type": "git", + "url": "https://github.com/paragonie/random_compat.git", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", + "shasum": "" + }, + "require": { + "php": ">= 7" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*", + "vimeo/psalm": "^1" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "polyfill", + "pseudorandom", + "random" + ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, + "time": "2020-10-15T08:29:30+00:00" + }, + { + "name": "paragonie/sodium_compat", + "version": "v1.20.0", + "source": { + "type": "git", + "url": "https://github.com/paragonie/sodium_compat.git", + "reference": "e592a3e06d1fa0d43988c7c7d9948ca836f644b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/e592a3e06d1fa0d43988c7c7d9948ca836f644b6", + "reference": "e592a3e06d1fa0d43988c7c7d9948ca836f644b6", + "shasum": "" + }, + "require": { + "paragonie/random_compat": ">=1", + "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8" + }, + "require-dev": { + "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9" + }, + "suggest": { + "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.", + "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security." + }, + "type": "library", + "autoload": { + "files": [ + "autoload.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "ISC" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com" + }, + { + "name": "Frank Denis", + "email": "jedisct1@pureftpd.org" + } + ], + "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists", + "keywords": [ + "Authentication", + "BLAKE2b", + "ChaCha20", + "ChaCha20-Poly1305", + "Chapoly", + "Curve25519", + "Ed25519", + "EdDSA", + "Edwards-curve Digital Signature Algorithm", + "Elliptic Curve Diffie-Hellman", + "Poly1305", + "Pure-PHP cryptography", + "RFC 7748", + "RFC 8032", + "Salpoly", + "Salsa20", + "X25519", + "XChaCha20-Poly1305", + "XSalsa20-Poly1305", + "Xchacha20", + "Xsalsa20", + "aead", + "cryptography", + "ecdh", + "elliptic curve", + "elliptic curve cryptography", + "encryption", + "libsodium", + "php", + "public-key cryptography", + "secret-key cryptography", + "side-channel resistant" + ], + "support": { + "issues": "https://github.com/paragonie/sodium_compat/issues", + "source": "https://github.com/paragonie/sodium_compat/tree/v1.20.0" + }, + "time": "2023-04-30T00:54:53+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.2", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2023-11-12T21:59:55+00:00" + }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/http-client", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client" + }, + "time": "2023-09-23T14:17:50+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "e616d01114759c4c489f93b099585439f795fe35" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", + "reference": "e616d01114759c4c489f93b099585439f795fe35", + "shasum": "" + }, + "require": { + "php": ">=7.0.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory/tree/1.0.2" + }, + "time": "2023-04-10T20:10:41+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.0" + }, + "time": "2021-07-14T16:46:02+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.12.2", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "9185c66c2165bbf4d71de78a69dccf4974f9538d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9185c66c2165bbf4d71de78a69dccf4974f9538d", + "reference": "9185c66c2165bbf4d71de78a69dccf4974f9538d", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.12.x-dev" + }, + "bamarni-bin": { + "bin-links": false, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.2" + }, + "time": "2024-03-17T01:53:00+00:00" + }, + { + "name": "pusher/pusher-php-server", + "version": "7.2.4", + "source": { + "type": "git", + "url": "https://github.com/pusher/pusher-http-php.git", + "reference": "de2f72296808f9cafa6a4462b15a768ff130cddb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/de2f72296808f9cafa6a4462b15a768ff130cddb", + "reference": "de2f72296808f9cafa6a4462b15a768ff130cddb", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "guzzlehttp/guzzle": "^7.2", + "paragonie/sodium_compat": "^1.6", + "php": "^7.3|^8.0", + "psr/log": "^1.0|^2.0|^3.0" + }, + "require-dev": { + "overtrue/phplint": "^2.3", + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "Pusher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Library for interacting with the Pusher REST API", + "keywords": [ + "events", + "messaging", + "php-pusher-server", + "publish", + "push", + "pusher", + "real time", + "real-time", + "realtime", + "rest", + "trigger" + ], + "support": { + "issues": "https://github.com/pusher/pusher-http-php/issues", + "source": "https://github.com/pusher/pusher-http-php/tree/7.2.4" + }, + "time": "2023-12-15T10:58:53+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/collection", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.28.3", + "fakerphp/faker": "^1.21", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^1.0", + "mockery/mockery": "^1.5", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpcsstandards/phpcsutils": "^1.0.0-rc1", + "phpspec/prophecy-phpunit": "^2.0", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5", + "psalm/plugin-mockery": "^1.1", + "psalm/plugin-phpunit": "^0.18.4", + "ramsey/coding-standard": "^2.0.3", + "ramsey/conventional-commits": "^1.3", + "vimeo/psalm": "^5.4" + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", + "type": "tidelift" + } + ], + "time": "2022-12-31T21:50:55+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.7.5", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", + "ext-json": "*", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.8", + "ergebnis/composer-normalize": "^2.15", + "mockery/mockery": "^1.3", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", + "php-mock/php-mock-mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^8.5 || ^9", + "ramsey/composer-repl": "^1.4", + "slevomat/coding-standard": "^8.4", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.9" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.7.5" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2023-11-08T05:53:05+00:00" + }, + { + "name": "ratchet/rfc6455", + "version": "v0.3.1", + "source": { + "type": "git", + "url": "https://github.com/ratchetphp/RFC6455.git", + "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb", + "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb", + "shasum": "" + }, + "require": { + "guzzlehttp/psr7": "^2 || ^1.7", + "php": ">=5.4.2" + }, + "require-dev": { + "phpunit/phpunit": "^5.7", + "react/socket": "^1.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Ratchet\\RFC6455\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "role": "Developer" + }, + { + "name": "Matt Bonneau", + "role": "Developer" + } + ], + "description": "RFC6455 WebSocket protocol handler", + "homepage": "http://socketo.me", + "keywords": [ + "WebSockets", + "rfc6455", + "websocket" + ], + "support": { + "chat": "https://gitter.im/reactphp/reactphp", + "issues": "https://github.com/ratchetphp/RFC6455/issues", + "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1" + }, + "time": "2021-12-09T23:20:49+00:00" + }, + { + "name": "react/cache", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/cache.git", + "reference": "d47c472b64aa5608225f47965a484b75c7817d5b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b", + "reference": "d47c472b64aa5608225f47965a484b75c7817d5b", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "react/promise": "^3.0 || ^2.0 || ^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Cache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async, Promise-based cache interface for ReactPHP", + "keywords": [ + "cache", + "caching", + "promise", + "reactphp" + ], + "support": { + "issues": "https://github.com/reactphp/cache/issues", + "source": "https://github.com/reactphp/cache/tree/v1.2.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2022-11-30T15:59:55+00:00" + }, + { + "name": "react/dns", + "version": "v1.12.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/dns.git", + "reference": "c134600642fa615b46b41237ef243daa65bb64ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec", + "reference": "c134600642fa615b46b41237ef243daa65bb64ec", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "react/cache": "^1.0 || ^0.6 || ^0.5", + "react/event-loop": "^1.2", + "react/promise": "^3.0 || ^2.7 || ^1.2.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", + "react/async": "^4 || ^3 || ^2", + "react/promise-timer": "^1.9" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Dns\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async DNS resolver for ReactPHP", + "keywords": [ + "async", + "dns", + "dns-resolver", + "reactphp" + ], + "support": { + "issues": "https://github.com/reactphp/dns/issues", + "source": "https://github.com/reactphp/dns/tree/v1.12.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-11-29T12:41:06+00:00" + }, + { + "name": "react/event-loop", + "version": "v1.5.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/event-loop.git", + "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354", + "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" + }, + "suggest": { + "ext-pcntl": "For signal handling support when using the StreamSelectLoop" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\EventLoop\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.", + "keywords": [ + "asynchronous", + "event-loop" + ], + "support": { + "issues": "https://github.com/reactphp/event-loop/issues", + "source": "https://github.com/reactphp/event-loop/tree/v1.5.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-11-13T13:48:05+00:00" + }, + { + "name": "react/promise", + "version": "v3.1.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/promise.git", + "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c", + "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "phpstan/phpstan": "1.10.39 || 1.4.10", + "phpunit/phpunit": "^9.6 || ^7.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "React\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "keywords": [ + "promise", + "promises" + ], + "support": { + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v3.1.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-11-16T16:21:57+00:00" + }, + { + "name": "react/promise-timer", + "version": "v1.10.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/promise-timer.git", + "reference": "4cb85c1c2125390748e3908120bb82feb99fe766" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/4cb85c1c2125390748e3908120bb82feb99fe766", + "reference": "4cb85c1c2125390748e3908120bb82feb99fe766", + "shasum": "" + }, + "require": { + "php": ">=5.3", + "react/event-loop": "^1.2", + "react/promise": "^3.0 || ^2.7.0 || ^1.2.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "React\\Promise\\Timer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.", + "homepage": "https://github.com/reactphp/promise-timer", + "keywords": [ + "async", + "event-loop", + "promise", + "reactphp", + "timeout", + "timer" + ], + "support": { + "issues": "https://github.com/reactphp/promise-timer/issues", + "source": "https://github.com/reactphp/promise-timer/tree/v1.10.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-07-20T15:40:28+00:00" + }, + { + "name": "react/socket", + "version": "v1.15.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/socket.git", + "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038", + "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3.0", + "react/dns": "^1.11", + "react/event-loop": "^1.2", + "react/promise": "^3 || ^2.6 || ^1.2.1", + "react/stream": "^1.2" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", + "react/async": "^4 || ^3 || ^2", + "react/promise-stream": "^1.4", + "react/promise-timer": "^1.10" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Socket\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP", + "keywords": [ + "Connection", + "Socket", + "async", + "reactphp", + "stream" + ], + "support": { + "issues": "https://github.com/reactphp/socket/issues", + "source": "https://github.com/reactphp/socket/tree/v1.15.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-12-15T11:02:10+00:00" + }, + { + "name": "react/stream", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/stream.git", + "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66", + "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3.8", + "react/event-loop": "^1.2" + }, + "require-dev": { + "clue/stream-filter": "~1.2", + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Stream\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP", + "keywords": [ + "event-driven", + "io", + "non-blocking", + "pipe", + "reactphp", + "readable", + "stream", + "writable" + ], + "support": { + "issues": "https://github.com/reactphp/stream/issues", + "source": "https://github.com/reactphp/stream/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-06-16T10:52:11+00:00" + }, + { + "name": "symfony/clock", + "version": "v7.0.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/clock.git", + "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/clock/zipball/8b9d08887353d627d5f6c3bf3373b398b49051c2", + "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/clock": "^1.0", + "symfony/polyfill-php83": "^1.28" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/now.php" + ], + "psr-4": { + "Symfony\\Component\\Clock\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Decouples applications from the system clock", + "homepage": "https://symfony.com", + "keywords": [ + "clock", + "psr20", + "time" + ], + "support": { + "source": "https://github.com/symfony/clock/tree/v7.0.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-03-02T12:46:12+00:00" + }, + { + "name": "symfony/console", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/6b099f3306f7c9c2d2786ed736d0026b2903205f", + "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^6.4|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v7.0.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-22T20:27:20+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/ec60a4edf94e63b0556b6a0888548bb400a3a3be", + "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v7.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-23T15:02:46+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "677b24759decff69e65b1e9d1471d90f95ced880" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/677b24759decff69e65b1e9d1471d90f95ced880", + "reference": "677b24759decff69e65b1e9d1471d90f95ced880", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^6.4|^7.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v7.0.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-22T20:27:20+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e", + "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-23T15:02:46+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/finder", + "version": "v7.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56", + "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "symfony/filesystem": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v7.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-10-31T17:59:56+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "439fdfdd344943254b1ef6278613e79040548045" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/439fdfdd344943254b1ef6278613e79040548045", + "reference": "439fdfdd344943254b1ef6278613e79040548045", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "doctrine/dbal": "<3.6", + "symfony/cache": "<6.4" + }, + "require-dev": { + "doctrine/dbal": "^3.6|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/mime": "^6.4|^7.0", + "symfony/rate-limiter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v7.0.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-08T19:22:56+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v7.0.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "37c24ca28f65e3121a68f3dd4daeb36fb1fa2a72" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/37c24ca28f65e3121a68f3dd4daeb36fb1fa2a72", + "reference": "37c24ca28f65e3121a68f3dd4daeb36fb1fa2a72", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<6.4", + "symfony/cache": "<6.4", + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<6.4", + "symfony/form": "<6.4", + "symfony/http-client": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<6.4", + "symfony/messenger": "<6.4", + "symfony/translation": "<6.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<6.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.4", + "twig/twig": "<3.0.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^6.4|^7.0", + "symfony/clock": "^6.4|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/css-selector": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^6.4|^7.0", + "symfony/property-access": "^6.4|^7.0", + "symfony/routing": "^6.4|^7.0", + "symfony/serializer": "^6.4.4|^7.0.4", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/translation": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^6.4|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-exporter": "^6.4|^7.0", + "twig/twig": "^3.0.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v7.0.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-03-04T21:05:24+00:00" + }, + { + "name": "symfony/mailer", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "72e16d87bf50a3ce195b9470c06bb9d7b816ea85" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/72e16d87bf50a3ce195b9470c06bb9d7b816ea85", + "reference": "72e16d87bf50a3ce195b9470c06bb9d7b816ea85", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.2", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/mime": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/messenger": "<6.4", + "symfony/mime": "<6.4", + "symfony/twig-bridge": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/twig-bridge": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Helps sending emails", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/mailer/tree/v7.0.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-03T21:34:19+00:00" + }, + { + "name": "symfony/mime", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716", + "reference": "c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<6.4", + "symfony/serializer": "<6.4" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/property-access": "^6.4|^7.0", + "symfony/property-info": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v7.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-30T08:34:29+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "a287ed7475f85bf6f61890146edbc932c0fff919" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", + "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", + "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-php72", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25", + "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-php83", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "86fcae159633351e5fd145d1c47de6c528f8caff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff", + "reference": "86fcae159633351e5fd145d1c47de6c528f8caff", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-php80": "^1.14" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php83\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-uuid", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/3abdd21b0ceaa3000ee950097bc3cf9efc137853", + "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Uuid\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for uuid functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/process", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/0e7727191c3b71ebec6d529fa0e50a01ca5679e9", + "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v7.0.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-22T20:27:20+00:00" + }, + { + "name": "symfony/routing", + "version": "v7.0.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "ba6bf07d43289c6a4b4591ddb75bc3bc5f069c19" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/ba6bf07d43289c6a4b4591ddb75bc3bc5f069c19", + "reference": "ba6bf07d43289c6a4b4591ddb75bc3bc5f069c19", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/yaml": "<6.4" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "support": { + "source": "https://github.com/symfony/routing/tree/v7.0.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-27T12:34:35+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.4.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.4.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-12-26T14:02:43+00:00" + }, + { + "name": "symfony/string", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b", + "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v7.0.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-01T13:17:36+00:00" + }, + { + "name": "symfony/translation", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/5b75e872f7d135d7abb4613809fadc8d9f3d30a0", + "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<6.4", + "symfony/yaml": "<6.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^4.18|^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v7.0.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-22T20:27:20+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.4.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "06450585bf65e978026bda220cdebca3f867fde7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7", + "reference": "06450585bf65e978026bda220cdebca3f867fde7", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-12-26T14:02:43+00:00" + }, + { + "name": "symfony/uid", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "87cedaf3fabd7b733859d4d77aa4ca598259054b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/87cedaf3fabd7b733859d4d77aa4ca598259054b", + "reference": "87cedaf3fabd7b733859d4d77aa4ca598259054b", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/uid/tree/v7.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-23T15:02:46+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "e03ad7c1535e623edbb94c22cc42353e488c6670" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e03ad7c1535e623edbb94c22cc42353e488c6670", + "reference": "e03ad7c1535e623edbb94c22cc42353e488c6670", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/uid": "^6.4|^7.0", + "twig/twig": "^3.0.4" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v7.0.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-15T11:33:06+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "v2.2.7", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb", + "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^5.5 || ^7.0 || ^8.0", + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7" + }, + "time": "2023-12-08T13:03:43+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.6.0", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.2", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-filter": "*", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "5.6-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2023-11-12T22:43:29+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "b56450eed252f6801410d810c8e1727224ae0743" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", + "reference": "b56450eed252f6801410d810c8e1727224ae0743", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "http://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/2.0.1" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2022-03-08T17:03:00+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [ + { + "name": "fakerphp/faker", + "version": "v1.23.1", + "source": { + "type": "git", + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b", + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", + "ext-intl": "*", + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" + }, + "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1" + }, + "time": "2024-01-02T13:46:09+00:00" + }, + { + "name": "filp/whoops", + "version": "2.15.4", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546", + "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546", + "shasum": "" + }, + "require": { + "php": "^5.5.9 || ^7.0 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^0.9 || ^1.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.15.4" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2023-11-03T12:00:00+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" + }, + { + "name": "laravel/breeze", + "version": "v2.0.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/breeze.git", + "reference": "a8afa763cf51adf890b778bff78e1945042b8150" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/breeze/zipball/a8afa763cf51adf890b778bff78e1945042b8150", + "reference": "a8afa763cf51adf890b778bff78e1945042b8150", + "shasum": "" + }, + "require": { + "illuminate/console": "^11.0", + "illuminate/filesystem": "^11.0", + "illuminate/support": "^11.0", + "illuminate/validation": "^11.0", + "php": "^8.2.0" + }, + "require-dev": { + "orchestra/testbench": "^9.0", + "phpstan/phpstan": "^1.10" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Breeze\\BreezeServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Breeze\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Minimal Laravel authentication scaffolding with Blade and Tailwind.", + "keywords": [ + "auth", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/breeze/issues", + "source": "https://github.com/laravel/breeze" + }, + "time": "2024-03-12T14:01:40+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.14.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "6b127276e3f263f7bb17d5077e9e0269e61b2a0e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/6b127276e3f263f7bb17d5077e9e0269e61b2a0e", + "reference": "6b127276e3f263f7bb17d5077e9e0269e61b2a0e", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.49.0", + "illuminate/view": "^10.43.0", + "larastan/larastan": "^2.8.1", + "laravel-zero/framework": "^10.3.0", + "mockery/mockery": "^1.6.7", + "nunomaduro/termwind": "^1.15.1", + "pestphp/pest": "^2.33.6" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Seeders\\": "database/seeders/", + "Database\\Factories\\": "database/factories/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "An opinionated code formatter for PHP.", + "homepage": "https://laravel.com", + "keywords": [ + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2024-02-20T17:38:05+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "e40cc7ffb5186c45698dbd47e9477e0e429396d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/e40cc7ffb5186c45698dbd47e9477e0e429396d0", + "reference": "e40cc7ffb5186c45698dbd47e9477e0e429396d0", + "shasum": "" + }, + "require": { + "illuminate/console": "^9.52.16|^10.0|^11.0", + "illuminate/contracts": "^9.52.16|^10.0|^11.0", + "illuminate/support": "^9.52.16|^10.0|^11.0", + "php": "^8.0", + "symfony/yaml": "^6.0|^7.0" + }, + "require-dev": { + "orchestra/testbench": "^7.0|^8.0|^9.0", + "phpstan/phpstan": "^1.10" + }, + "bin": [ + "bin/sail" + ], + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Sail\\SailServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Docker files for running a basic Laravel application.", + "keywords": [ + "docker", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/sail/issues", + "source": "https://github.com/laravel/sail" + }, + "time": "2024-03-08T16:32:33+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.6.9", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06", + "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": ">=7.3" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.6.10", + "symplify/easy-coding-standard": "^12.0.8" + }, + "type": "library", + "autoload": { + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], + "psr-4": { + "Mockery\\": "library/Mockery" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "https://github.com/padraic", + "role": "Author" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "https://davedevelopment.co.uk", + "role": "Developer" + }, + { + "name": "Nathanael Esayeas", + "email": "nathanael.esayeas@protonmail.com", + "homepage": "https://github.com/ghostwriter", + "role": "Lead Developer" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "docs": "https://docs.mockery.io/", + "issues": "https://github.com/mockery/mockery/issues", + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" + }, + "time": "2023-12-10T02:24:34+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.11.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3,<3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2023-03-08T13:26:56+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v8.1.1", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "13e5d538b95a744d85f447a321ce10adb28e9af9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/13e5d538b95a744d85f447a321ce10adb28e9af9", + "reference": "13e5d538b95a744d85f447a321ce10adb28e9af9", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.15.4", + "nunomaduro/termwind": "^2.0.1", + "php": "^8.2.0", + "symfony/console": "^7.0.4" + }, + "conflict": { + "laravel/framework": "<11.0.0 || >=12.0.0", + "phpunit/phpunit": "<10.5.1 || >=12.0.0" + }, + "require-dev": { + "larastan/larastan": "^2.9.2", + "laravel/framework": "^11.0.0", + "laravel/pint": "^1.14.0", + "laravel/sail": "^1.28.2", + "laravel/sanctum": "^4.0.0", + "laravel/tinker": "^2.9.0", + "orchestra/testbench-core": "^9.0.0", + "pestphp/pest": "^2.34.1 || ^3.0.0", + "sebastian/environment": "^6.0.1 || ^7.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + }, + "branch-alias": { + "dev-8.x": "8.x-dev" + } + }, + "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2024-03-06T16:20:09+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "11.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "7e35a2cbcabac0e6865fd373742ea432a3c34f92" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e35a2cbcabac0e6865fd373742ea432a3c34f92", + "reference": "7e35a2cbcabac0e6865fd373742ea432a3c34f92", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^5.0", + "php": ">=8.2", + "phpunit/php-file-iterator": "^5.0", + "phpunit/php-text-template": "^4.0", + "sebastian/code-unit-reverse-lookup": "^4.0", + "sebastian/complexity": "^4.0", + "sebastian/environment": "^7.0", + "sebastian/lines-of-code": "^3.0", + "sebastian/version": "^5.0", + "theseer/tokenizer": "^1.2.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-12T15:35:40+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "99e95c94ad9500daca992354fa09d7b99abe2210" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/99e95c94ad9500daca992354fa09d7b99abe2210", + "reference": "99e95c94ad9500daca992354fa09d7b99abe2210", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:05:04+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "5d8d9355a16d8cc5a1305b0a85342cfa420612be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5d8d9355a16d8cc5a1305b0a85342cfa420612be", + "reference": "5d8d9355a16d8cc5a1305b0a85342cfa420612be", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "security": "https://github.com/sebastianbergmann/php-invoker/security/policy", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:05:50+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "d38f6cbff1cdb6f40b03c9811421561668cc133e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/d38f6cbff1cdb6f40b03c9811421561668cc133e", + "reference": "d38f6cbff1cdb6f40b03c9811421561668cc133e", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:06:56+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "7.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "8a59d9e25720482ee7fcdf296595e08795b84dc5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8a59d9e25720482ee7fcdf296595e08795b84dc5", + "reference": "8a59d9e25720482ee7fcdf296595e08795b84dc5", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "security": "https://github.com/sebastianbergmann/php-timer/security/policy", + "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:08:01+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "11.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "6af32d7938fc366f86e49a5f5ebb314018d1b1fb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6af32d7938fc366f86e49a5f5ebb314018d1b1fb", + "reference": "6af32d7938fc366f86e49a5f5ebb314018d1b1fb", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.10.1", + "phar-io/manifest": "^2.0.3", + "phar-io/version": "^3.0.2", + "php": ">=8.2", + "phpunit/php-code-coverage": "^11.0", + "phpunit/php-file-iterator": "^5.0", + "phpunit/php-invoker": "^5.0", + "phpunit/php-text-template": "^4.0", + "phpunit/php-timer": "^7.0", + "sebastian/cli-parser": "^3.0", + "sebastian/code-unit": "^3.0", + "sebastian/comparator": "^6.0", + "sebastian/diff": "^6.0", + "sebastian/environment": "^7.0", + "sebastian/exporter": "^6.0", + "sebastian/global-state": "^7.0", + "sebastian/object-enumerator": "^6.0", + "sebastian/type": "^5.0", + "sebastian/version": "^5.0" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.0-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.0.6" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2024-03-12T15:40:01+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "00a74d5568694711f0222e54fb281e1d15fdf04a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/00a74d5568694711f0222e54fb281e1d15fdf04a", + "reference": "00a74d5568694711f0222e54fb281e1d15fdf04a", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:26:58+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "6634549cb8d702282a04a774e36a7477d2bd9015" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6634549cb8d702282a04a774e36a7477d2bd9015", + "reference": "6634549cb8d702282a04a774e36a7477d2bd9015", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "security": "https://github.com/sebastianbergmann/code-unit/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T05:50:41+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "df80c875d3e459b45c6039e4d9b71d4fbccae25d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/df80c875d3e459b45c6039e4d9b71d4fbccae25d", + "reference": "df80c875d3e459b45c6039e4d9b71d4fbccae25d", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T05:52:17+00:00" + }, + { + "name": "sebastian/comparator", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "bd0f2fa5b9257c69903537b266ccb80fcf940db8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/bd0f2fa5b9257c69903537b266ccb80fcf940db8", + "reference": "bd0f2fa5b9257c69903537b266ccb80fcf940db8", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/diff": "^6.0", + "sebastian/exporter": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T05:53:45+00:00" + }, + { + "name": "sebastian/complexity", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "88a434ad86150e11a606ac4866b09130712671f0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/88a434ad86150e11a606ac4866b09130712671f0", + "reference": "88a434ad86150e11a606ac4866b09130712671f0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T05:55:19+00:00" + }, + { + "name": "sebastian/diff", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "ab83243ecc233de5655b76f577711de9f842e712" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ab83243ecc233de5655b76f577711de9f842e712", + "reference": "ab83243ecc233de5655b76f577711de9f842e712", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/6.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:30:33+00:00" + }, + { + "name": "sebastian/environment", + "version": "7.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "100d8b855d7180f79f9a9a5c483f2d960581c3ea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/100d8b855d7180f79f9a9a5c483f2d960581c3ea", + "reference": "100d8b855d7180f79f9a9a5c483f2d960581c3ea", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/7.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T05:57:54+00:00" + }, + { + "name": "sebastian/exporter", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "f291e5a317c321c0381fa9ecc796fa2d21b186da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/f291e5a317c321c0381fa9ecc796fa2d21b186da", + "reference": "f291e5a317c321c0381fa9ecc796fa2d21b186da", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/6.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:28:20+00:00" + }, + { + "name": "sebastian/global-state", + "version": "7.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "c3a307e832f2e69c7ef869e31fc644fde0e7cb3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/c3a307e832f2e69c7ef869e31fc644fde0e7cb3e", + "reference": "c3a307e832f2e69c7ef869e31fc644fde0e7cb3e", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:32:10+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "376c5b3f6b43c78fdc049740bca76a7c846706c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/376c5b3f6b43c78fdc049740bca76a7c846706c0", + "reference": "376c5b3f6b43c78fdc049740bca76a7c846706c0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:00:36+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "f75f6c460da0bbd9668f43a3dde0ec0ba7faa678" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f75f6c460da0bbd9668f43a3dde0ec0ba7faa678", + "reference": "f75f6c460da0bbd9668f43a3dde0ec0ba7faa678", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:01:29+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "bb2a6255d30853425fd38f032eb64ced9f7f132d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/bb2a6255d30853425fd38f032eb64ced9f7f132d", + "reference": "bb2a6255d30853425fd38f032eb64ced9f7f132d", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "security": "https://github.com/sebastianbergmann/object-reflector/security/policy", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:02:18+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "b75224967b5a466925c6d54e68edd0edf8dd4ed4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b75224967b5a466925c6d54e68edd0edf8dd4ed4", + "reference": "b75224967b5a466925c6d54e68edd0edf8dd4ed4", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:08:48+00:00" + }, + { + "name": "sebastian/type", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "b8502785eb3523ca0dd4afe9ca62235590020f3f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8502785eb3523ca0dd4afe9ca62235590020f3f", + "reference": "b8502785eb3523ca0dd4afe9ca62235590020f3f", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "security": "https://github.com/sebastianbergmann/type/security/policy", + "source": "https://github.com/sebastianbergmann/type/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:09:34+00:00" + }, + { + "name": "sebastian/version", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "13999475d2cb1ab33cb73403ba356a814fdbb001" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/13999475d2cb1ab33cb73403ba356a814fdbb001", + "reference": "13999475d2cb1ab33cb73403ba356a814fdbb001", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "security": "https://github.com/sebastianbergmann/version/security/policy", + "source": "https://github.com/sebastianbergmann/version/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:10:47+00:00" + }, + { + "name": "spatie/backtrace", + "version": "1.5.3", + "source": { + "type": "git", + "url": "https://github.com/spatie/backtrace.git", + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab", + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "ext-json": "*", + "phpunit/phpunit": "^9.3", + "spatie/phpunit-snapshot-assertions": "^4.2", + "symfony/var-dumper": "^5.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Backtrace\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van de Herten", + "email": "freek@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "A better backtrace", + "homepage": "https://github.com/spatie/backtrace", + "keywords": [ + "Backtrace", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/backtrace/tree/1.5.3" + }, + "funding": [ + { + "url": "https://github.com/sponsors/spatie", + "type": "github" + }, + { + "url": "https://spatie.be/open-source/support-us", + "type": "other" + } + ], + "time": "2023-06-28T12:59:17+00:00" + }, + { + "name": "spatie/flare-client-php", + "version": "1.4.4", + "source": { + "type": "git", + "url": "https://github.com/spatie/flare-client-php.git", + "reference": "17082e780752d346c2db12ef5d6bee8e835e399c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/17082e780752d346c2db12ef5d6bee8e835e399c", + "reference": "17082e780752d346c2db12ef5d6bee8e835e399c", + "shasum": "" + }, + "require": { + "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0", + "php": "^8.0", + "spatie/backtrace": "^1.5.2", + "symfony/http-foundation": "^5.2|^6.0|^7.0", + "symfony/mime": "^5.2|^6.0|^7.0", + "symfony/process": "^5.2|^6.0|^7.0", + "symfony/var-dumper": "^5.2|^6.0|^7.0" + }, + "require-dev": { + "dms/phpunit-arraysubset-asserts": "^0.5.0", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "spatie/phpunit-snapshot-assertions": "^4.0|^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\FlareClient\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Send PHP errors to Flare", + "homepage": "https://github.com/spatie/flare-client-php", + "keywords": [ + "exception", + "flare", + "reporting", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/flare-client-php/issues", + "source": "https://github.com/spatie/flare-client-php/tree/1.4.4" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-01-31T14:18:45+00:00" + }, + { + "name": "spatie/ignition", + "version": "1.12.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/ignition.git", + "reference": "5b6f801c605a593106b623e45ca41496a6e7d56d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/ignition/zipball/5b6f801c605a593106b623e45ca41496a6e7d56d", + "reference": "5b6f801c605a593106b623e45ca41496a6e7d56d", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "php": "^8.0", + "spatie/backtrace": "^1.5.3", + "spatie/flare-client-php": "^1.4.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "require-dev": { + "illuminate/cache": "^9.52|^10.0|^11.0", + "mockery/mockery": "^1.4", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "psr/simple-cache-implementation": "*", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.5.x-dev" + } + }, + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for PHP applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/ignition/issues", + "source": "https://github.com/spatie/ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-01-03T15:49:39+00:00" + }, + { + "name": "spatie/laravel-ignition", + "version": "2.4.2", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-ignition.git", + "reference": "351504f4570e32908839fc5a2dc53bf77d02f85e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/351504f4570e32908839fc5a2dc53bf77d02f85e", + "reference": "351504f4570e32908839fc5a2dc53bf77d02f85e", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "illuminate/support": "^10.0|^11.0", + "php": "^8.1", + "spatie/flare-client-php": "^1.3.5", + "spatie/ignition": "^1.9", + "symfony/console": "^6.2.3|^7.0", + "symfony/var-dumper": "^6.2.3|^7.0" + }, + "require-dev": { + "livewire/livewire": "^2.11|^3.3.5", + "mockery/mockery": "^1.5.1", + "openai-php/client": "^0.8.1", + "orchestra/testbench": "^8.0|^9.0", + "pestphp/pest": "^2.30", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan-deprecation-rules": "^1.1.1", + "phpstan/phpstan-phpunit": "^1.3.3", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Spatie\\LaravelIgnition\\IgnitionServiceProvider" + ], + "aliases": { + "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" + } + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\LaravelIgnition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for Laravel applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/laravel-ignition/issues", + "source": "https://github.com/spatie/laravel-ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-02-09T16:08:40+00:00" + }, + { + "name": "symfony/yaml", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "2d4fca631c00700597e9442a0b2451ce234513d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/2d4fca631c00700597e9442a0b2451ce234513d3", + "reference": "2d4fca631c00700597e9442a0b2451ce234513d3", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v7.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-23T15:02:46+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:36:25+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": { + "laravel/reverb": 10 + }, + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^8.2" + }, + "platform-dev": [], + "plugin-api-version": "2.2.0" +} diff --git a/config/app.php b/config/app.php new file mode 100644 index 0000000..f467267 --- /dev/null +++ b/config/app.php @@ -0,0 +1,126 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | the application so that it's available within Artisan commands. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. The timezone + | is set to "UTC" by default as it is suitable for most use cases. + | + */ + + 'timezone' => env('APP_TIMEZONE', 'UTC'), + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by Laravel's translation / localization methods. This option can be + | set to any locale for which you plan to have translation strings. + | + */ + + 'locale' => env('APP_LOCALE', 'en'), + + 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), + + 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'), + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is utilized by Laravel's encryption services and should be set + | to a random, 32 character string to ensure that all encrypted values + | are secure. You should do this prior to deploying the application. + | + */ + + 'cipher' => 'AES-256-CBC', + + 'key' => env('APP_KEY'), + + 'previous_keys' => [ + ...array_filter( + explode(',', env('APP_PREVIOUS_KEYS', '')) + ), + ], + + /* + |-------------------------------------------------------------------------- + | Maintenance Mode Driver + |-------------------------------------------------------------------------- + | + | These configuration options determine the driver used to determine and + | manage Laravel's "maintenance mode" status. The "cache" driver will + | allow maintenance mode to be controlled across multiple machines. + | + | Supported drivers: "file", "cache" + | + */ + + 'maintenance' => [ + 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'), + 'store' => env('APP_MAINTENANCE_STORE', 'database'), + ], + +]; diff --git a/config/auth.php b/config/auth.php new file mode 100644 index 0000000..0ba5d5d --- /dev/null +++ b/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => env('AUTH_GUARD', 'web'), + 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'), + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | which utilizes session storage plus the Eloquent user provider. + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | If you have multiple user tables or models you may configure multiple + | providers to represent the model / table. These providers may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => env('AUTH_MODEL', App\Models\User::class), + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | These configuration options specify the behavior of Laravel's password + | reset functionality, including the table utilized for token storage + | and the user provider that is invoked to actually retrieve users. + | + | The expiry time is the number of minutes that each reset token will be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + | The throttle setting is the number of seconds a user must wait before + | generating more password reset tokens. This prevents the user from + | quickly generating a very large amount of password reset tokens. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | window expires and users are asked to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800), + +]; diff --git a/config/broadcasting.php b/config/broadcasting.php new file mode 100644 index 0000000..ebc3fb9 --- /dev/null +++ b/config/broadcasting.php @@ -0,0 +1,82 @@ + env('BROADCAST_CONNECTION', 'null'), + + /* + |-------------------------------------------------------------------------- + | Broadcast Connections + |-------------------------------------------------------------------------- + | + | Here you may define all of the broadcast connections that will be used + | to broadcast events to other systems or over WebSockets. Samples of + | each available type of connection are provided inside this array. + | + */ + + 'connections' => [ + + 'reverb' => [ + 'driver' => 'reverb', + 'key' => env('REVERB_APP_KEY'), + 'secret' => env('REVERB_APP_SECRET'), + 'app_id' => env('REVERB_APP_ID'), + 'options' => [ + 'host' => env('REVERB_HOST'), + 'port' => env('REVERB_PORT', 443), + 'scheme' => env('REVERB_SCHEME', 'https'), + 'useTLS' => env('REVERB_SCHEME', 'https') === 'https', + ], + 'client_options' => [ + // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html + ], + ], + + 'pusher' => [ + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER'), + 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', + 'port' => env('PUSHER_PORT', 443), + 'scheme' => env('PUSHER_SCHEME', 'https'), + 'encrypted' => true, + 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', + ], + 'client_options' => [ + // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html + ], + ], + + 'ably' => [ + 'driver' => 'ably', + 'key' => env('ABLY_KEY'), + ], + + 'log' => [ + 'driver' => 'log', + ], + + 'null' => [ + 'driver' => 'null', + ], + + ], + +]; diff --git a/config/cache.php b/config/cache.php new file mode 100644 index 0000000..3eb95d1 --- /dev/null +++ b/config/cache.php @@ -0,0 +1,107 @@ + env('CACHE_STORE', 'database'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + | Supported drivers: "apc", "array", "database", "file", "memcached", + | "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'table' => env('DB_CACHE_TABLE', 'cache'), + 'connection' => env('DB_CACHE_CONNECTION', null), + 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION', null), + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + 'lock_path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), + 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + 'octane' => [ + 'driver' => 'octane', + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing the APC, database, memcached, Redis, and DynamoDB cache + | stores, there might be other applications using the same cache. For + | that reason, you may prefix every cache key to avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), + +]; diff --git a/config/chatify.php b/config/chatify.php new file mode 100644 index 0000000..6ca2439 --- /dev/null +++ b/config/chatify.php @@ -0,0 +1,124 @@ + env('CHATIFY_NAME', 'Aigo Messanger'), + + /* + |------------------------------------- + | The disk on which to store added + | files and derived images by default. + |------------------------------------- + */ + 'storage_disk_name' => env('CHATIFY_STORAGE_DISK', 'public'), + + /* + |------------------------------------- + | Routes configurations + |------------------------------------- + */ + 'routes' => [ + 'custom' => env('CHATIFY_CUSTOM_ROUTES', true), + 'prefix' => env('CHATIFY_ROUTES_PREFIX', 'aigochat'), + 'middleware' => env('CHATIFY_ROUTES_MIDDLEWARE', ['web','auth']), + 'namespace' => env('CHATIFY_ROUTES_NAMESPACE', 'App\Http\Controllers\vendor\Chatify'), + ], + 'api_routes' => [ + 'prefix' => env('CHATIFY_API_ROUTES_PREFIX', 'chatify/api'), + 'middleware' => env('CHATIFY_API_ROUTES_MIDDLEWARE', ['api']), + 'namespace' => env('CHATIFY_API_ROUTES_NAMESPACE', 'App\Http\Controllers\vendor\Chatify\Api'), + ], + + /* + |------------------------------------- + | Pusher API credentials + |------------------------------------- + */ + 'pusher' => [ + 'debug' => env('APP_DEBUG', false), + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER', 'ap1'), + 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'ap1').'.pusher.com', + 'port' => env('PUSHER_PORT', 443), + 'scheme' => env('PUSHER_SCHEME', 'https'), + 'encrypted' => true, + 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', + ], + ], + + /* + |------------------------------------- + | User Avatar + |------------------------------------- + */ + 'user_avatar' => [ + 'folder' => 'users-avatar', + 'default' => 'avatar.png', + ], + + /* + |------------------------------------- + | Gravatar + | + | imageset property options: + | [ 404 | mp | identicon (default) | monsterid | wavatar ] + |------------------------------------- + */ + 'gravatar' => [ + 'enabled' => true, + 'image_size' => 200, + 'imageset' => 'identicon' + ], + + /* + |------------------------------------- + | Attachments + |------------------------------------- + */ + 'attachments' => [ + 'folder' => 'attachments', + 'download_route_name' => 'attachments.download', + 'allowed_images' => (array) ['png','jpg','jpeg','gif'], + 'allowed_files' => (array) ['zip','rar','txt'], + 'max_upload_size' => env('CHATIFY_MAX_FILE_SIZE', 150), // MB + ], + + /* + |------------------------------------- + | Messenger's colors + |------------------------------------- + */ + 'colors' => (array) [ + '#2180f3', + '#2196F3', + '#00BCD4', + '#3F51B5', + '#673AB7', + '#4CAF50', + '#FFC107', + '#FF9800', + '#ff2522', + '#9C27B0', + ], + /* + |------------------------------------- + | Sounds + | You can enable/disable the sounds and + | change sound's name/path placed at + | `public/` directory of your app. + | + |------------------------------------- + */ + 'sounds' => [ + 'enabled' => true, + 'public_path' => 'sounds/chatify', + 'new_message' => 'new-message-sound.mp3', + ] +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 0000000..f8e8dcb --- /dev/null +++ b/config/database.php @@ -0,0 +1,170 @@ + env('DB_CONNECTION', 'sqlite'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Below are all of the database connections defined for your application. + | An example configuration is provided for each database system which + | is supported by Laravel. You're free to add / remove connections. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DB_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'mariadb' => [ + 'driver' => 'mariadb', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + // 'encrypt' => env('DB_ENCRYPT', 'yes'), + // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run on the database. + | + */ + + 'migrations' => [ + 'table' => 'migrations', + 'update_date_on_publish' => true, + ], + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as Memcached. You may define your connection settings here. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/config/error_log b/config/error_log new file mode 100644 index 0000000..9b1f44c --- /dev/null +++ b/config/error_log @@ -0,0 +1,3552 @@ +[23-Jun-2024 06:04:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[23-Jun-2024 17:50:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[23-Jun-2024 17:51:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[23-Jun-2024 17:52:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[23-Jun-2024 17:52:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[23-Jun-2024 17:53:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[23-Jun-2024 20:44:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[23-Jun-2024 20:44:11 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[23-Jun-2024 20:44:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[23-Jun-2024 20:44:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[23-Jun-2024 20:44:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[23-Jun-2024 20:44:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[23-Jun-2024 20:44:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[25-Jun-2024 16:19:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[25-Jun-2024 16:19:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[25-Jun-2024 16:19:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[25-Jun-2024 16:19:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[25-Jun-2024 16:19:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[25-Jun-2024 16:19:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[25-Jun-2024 16:19:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[25-Jun-2024 16:20:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[25-Jun-2024 16:21:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[25-Jun-2024 16:23:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[25-Jun-2024 16:25:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[25-Jun-2024 16:28:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[25-Jun-2024 18:35:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[28-Jun-2024 03:13:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[28-Jun-2024 03:13:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[28-Jun-2024 03:13:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[28-Jun-2024 03:14:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[28-Jun-2024 03:14:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[28-Jun-2024 03:15:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[28-Jun-2024 03:16:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[28-Jun-2024 03:18:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[28-Jun-2024 03:21:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[28-Jun-2024 03:21:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[28-Jun-2024 03:23:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[28-Jun-2024 03:25:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[28-Jun-2024 03:27:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[28-Jun-2024 05:48:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[28-Jun-2024 06:21:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[28-Jun-2024 06:22:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[28-Jun-2024 06:22:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[28-Jun-2024 06:22:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[28-Jun-2024 06:23:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[28-Jun-2024 06:23:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[28-Jun-2024 06:24:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[28-Jun-2024 06:24:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[28-Jun-2024 06:24:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[28-Jun-2024 06:24:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[28-Jun-2024 06:24:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[28-Jun-2024 06:24:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[28-Jun-2024 06:24:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[28-Jun-2024 11:31:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[28-Jun-2024 18:40:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[29-Jun-2024 08:30:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[29-Jun-2024 09:01:11 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[29-Jun-2024 09:03:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[29-Jun-2024 09:05:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[29-Jun-2024 09:07:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[29-Jun-2024 09:08:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[29-Jun-2024 09:10:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[29-Jun-2024 10:10:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[29-Jun-2024 10:10:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[29-Jun-2024 10:12:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[29-Jun-2024 10:13:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[29-Jun-2024 10:14:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[29-Jun-2024 13:01:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[29-Jun-2024 14:34:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[29-Jun-2024 14:34:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[29-Jun-2024 19:39:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[30-Jun-2024 11:08:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[30-Jun-2024 11:08:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[30-Jun-2024 15:49:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[30-Jun-2024 22:24:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[01-Jul-2024 08:30:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[01-Jul-2024 09:35:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[02-Jul-2024 07:21:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[04-Jul-2024 18:01:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[05-Jul-2024 13:08:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[05-Jul-2024 13:09:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[05-Jul-2024 13:09:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[05-Jul-2024 13:10:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[05-Jul-2024 13:11:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[06-Jul-2024 18:07:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[17-Jul-2024 20:22:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[17-Jul-2024 22:36:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[18-Jul-2024 02:21:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[18-Jul-2024 03:39:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[18-Jul-2024 04:58:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[18-Jul-2024 05:03:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[18-Jul-2024 05:33:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[18-Jul-2024 07:22:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[18-Jul-2024 08:17:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[18-Jul-2024 08:50:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[18-Jul-2024 09:00:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[18-Jul-2024 11:29:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[22-Jul-2024 12:19:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[22-Jul-2024 12:20:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[22-Jul-2024 12:20:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[22-Jul-2024 12:20:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[22-Jul-2024 12:21:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[22-Jul-2024 12:21:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[22-Jul-2024 12:22:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[22-Jul-2024 12:22:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[22-Jul-2024 12:22:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[22-Jul-2024 12:22:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[22-Jul-2024 12:23:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[22-Jul-2024 12:23:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[22-Jul-2024 12:23:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[25-Jul-2024 12:32:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[26-Jul-2024 05:20:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[30-Jul-2024 21:23:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[03-Aug-2024 00:41:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[03-Aug-2024 00:41:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[03-Aug-2024 00:41:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[03-Aug-2024 00:41:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[03-Aug-2024 00:41:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[03-Aug-2024 00:41:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[03-Aug-2024 00:41:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[03-Aug-2024 00:41:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[03-Aug-2024 00:41:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[03-Aug-2024 00:41:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[03-Aug-2024 00:41:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[03-Aug-2024 00:41:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[03-Aug-2024 00:41:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[03-Aug-2024 00:41:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[03-Aug-2024 00:41:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[03-Aug-2024 00:41:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[03-Aug-2024 00:41:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[03-Aug-2024 00:41:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[03-Aug-2024 00:41:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[03-Aug-2024 00:41:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[03-Aug-2024 00:41:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[03-Aug-2024 00:41:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[03-Aug-2024 00:41:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[03-Aug-2024 00:41:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[03-Aug-2024 00:41:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[03-Aug-2024 00:41:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[04-Aug-2024 08:53:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[04-Aug-2024 08:54:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[04-Aug-2024 08:59:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[04-Aug-2024 09:01:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[04-Aug-2024 09:02:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[04-Aug-2024 09:47:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[04-Aug-2024 09:59:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[04-Aug-2024 10:02:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[04-Aug-2024 10:08:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[04-Aug-2024 10:38:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[04-Aug-2024 12:41:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[08-Aug-2024 03:34:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[08-Aug-2024 12:16:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[10-Aug-2024 23:04:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[14-Aug-2024 00:02:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[17-Aug-2024 15:46:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[17-Aug-2024 15:46:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[17-Aug-2024 15:46:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[17-Aug-2024 15:46:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[17-Aug-2024 15:46:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[17-Aug-2024 15:46:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[17-Aug-2024 15:46:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[17-Aug-2024 15:46:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[17-Aug-2024 15:46:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[17-Aug-2024 15:46:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[17-Aug-2024 15:46:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[17-Aug-2024 15:46:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[17-Aug-2024 15:46:58 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[20-Aug-2024 12:41:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[23-Aug-2024 21:25:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[25-Aug-2024 19:45:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[25-Aug-2024 19:46:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[25-Aug-2024 19:46:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[25-Aug-2024 19:46:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[25-Aug-2024 19:47:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[25-Aug-2024 19:47:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[25-Aug-2024 19:47:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[25-Aug-2024 19:47:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[25-Aug-2024 19:48:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[25-Aug-2024 19:48:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[25-Aug-2024 19:48:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[25-Aug-2024 19:49:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[25-Aug-2024 19:49:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[25-Aug-2024 20:42:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[25-Aug-2024 20:42:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[25-Aug-2024 20:42:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[25-Aug-2024 20:42:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[25-Aug-2024 20:42:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[25-Aug-2024 20:42:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[25-Aug-2024 20:43:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[25-Aug-2024 20:43:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[25-Aug-2024 20:43:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[25-Aug-2024 20:43:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[25-Aug-2024 20:43:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[25-Aug-2024 20:44:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[25-Aug-2024 20:44:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[26-Aug-2024 13:30:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[26-Aug-2024 13:30:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[26-Aug-2024 17:02:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[26-Aug-2024 17:53:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[26-Aug-2024 19:00:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[26-Aug-2024 19:38:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[26-Aug-2024 20:35:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[26-Aug-2024 20:46:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[26-Aug-2024 21:34:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[26-Aug-2024 22:27:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[27-Aug-2024 01:10:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[27-Aug-2024 01:39:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[05-Sep-2024 18:17:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[05-Sep-2024 19:11:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[05-Sep-2024 20:49:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[05-Sep-2024 23:47:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[06-Sep-2024 05:38:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[06-Sep-2024 15:24:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[07-Sep-2024 05:13:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[07-Sep-2024 20:13:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[08-Sep-2024 12:30:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[09-Sep-2024 12:40:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[10-Sep-2024 05:36:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-Sep-2024 06:36:58 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[10-Sep-2024 06:38:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[10-Sep-2024 06:44:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[10-Sep-2024 06:47:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[10-Sep-2024 06:48:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[10-Sep-2024 06:50:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[10-Sep-2024 06:51:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[10-Sep-2024 06:52:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[10-Sep-2024 06:54:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[10-Sep-2024 06:55:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[10-Sep-2024 10:39:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[10-Sep-2024 14:54:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[10-Sep-2024 14:56:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-Sep-2024 14:56:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[10-Sep-2024 14:57:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[12-Sep-2024 00:51:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[17-Sep-2024 06:51:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[22-Sep-2024 11:38:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[26-Sep-2024 00:09:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[26-Sep-2024 02:24:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[28-Sep-2024 07:24:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[28-Sep-2024 07:30:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[28-Sep-2024 07:49:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[28-Sep-2024 08:45:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[28-Sep-2024 09:05:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[28-Sep-2024 11:00:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[28-Sep-2024 11:41:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[28-Sep-2024 13:16:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[28-Sep-2024 15:59:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[28-Sep-2024 17:03:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[28-Sep-2024 18:04:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[28-Sep-2024 21:41:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[29-Sep-2024 02:11:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[29-Sep-2024 08:44:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[29-Sep-2024 17:39:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[29-Sep-2024 18:34:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[30-Sep-2024 10:56:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[30-Sep-2024 16:40:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[30-Sep-2024 18:31:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[30-Sep-2024 18:32:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[30-Sep-2024 22:20:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[01-Oct-2024 17:28:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[01-Oct-2024 17:28:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[01-Oct-2024 22:08:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[02-Oct-2024 04:41:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[02-Oct-2024 15:03:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[02-Oct-2024 15:23:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[02-Oct-2024 16:21:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[02-Oct-2024 22:17:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[02-Oct-2024 23:56:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[05-Oct-2024 08:46:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[09-Oct-2024 03:49:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[10-Oct-2024 23:10:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[12-Oct-2024 00:20:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[12-Oct-2024 19:19:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[13-Oct-2024 21:47:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[14-Oct-2024 18:04:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[20-Oct-2024 03:00:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[20-Oct-2024 05:34:58 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[24-Oct-2024 11:29:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[26-Oct-2024 03:59:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[31-Oct-2024 04:16:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[31-Oct-2024 05:15:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[31-Oct-2024 06:24:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[31-Oct-2024 07:08:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[31-Oct-2024 14:24:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[31-Oct-2024 15:34:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[31-Oct-2024 15:46:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[31-Oct-2024 16:32:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[31-Oct-2024 16:57:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[31-Oct-2024 17:02:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[31-Oct-2024 18:36:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[15-Nov-2024 17:13:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[15-Nov-2024 18:23:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[15-Nov-2024 18:32:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[15-Nov-2024 19:28:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[15-Nov-2024 19:51:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[15-Nov-2024 21:05:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[16-Nov-2024 01:00:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[16-Nov-2024 01:44:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[16-Nov-2024 01:58:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[17-Nov-2024 18:44:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[19-Nov-2024 13:10:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[20-Nov-2024 20:26:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[22-Nov-2024 09:58:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[22-Nov-2024 21:48:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[22-Nov-2024 21:48:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[22-Nov-2024 21:48:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[22-Nov-2024 21:48:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[22-Nov-2024 21:48:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[22-Nov-2024 21:48:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[22-Nov-2024 21:48:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[22-Nov-2024 21:48:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[22-Nov-2024 21:48:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[22-Nov-2024 21:48:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[22-Nov-2024 21:48:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[22-Nov-2024 21:48:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[22-Nov-2024 21:48:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[26-Nov-2024 11:20:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[29-Nov-2024 02:58:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[01-Dec-2024 22:07:11 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[01-Dec-2024 22:39:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[01-Dec-2024 22:59:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[02-Dec-2024 00:15:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[02-Dec-2024 00:31:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[02-Dec-2024 00:57:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[02-Dec-2024 06:34:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[02-Dec-2024 07:35:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[02-Dec-2024 09:16:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[02-Dec-2024 09:31:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[02-Dec-2024 11:42:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[06-Dec-2024 01:55:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[06-Dec-2024 22:09:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[11-Dec-2024 21:13:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[13-Dec-2024 16:53:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[14-Dec-2024 20:12:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[20-Dec-2024 12:56:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[22-Dec-2024 12:38:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[27-Dec-2024 03:31:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[01-Jan-2025 05:45:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[01-Jan-2025 05:45:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[01-Jan-2025 09:49:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[02-Jan-2025 00:07:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[02-Jan-2025 02:47:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[02-Jan-2025 03:36:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[02-Jan-2025 04:07:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[02-Jan-2025 06:54:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[02-Jan-2025 07:11:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[02-Jan-2025 07:21:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[02-Jan-2025 07:39:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[02-Jan-2025 12:33:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[02-Jan-2025 13:21:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[02-Jan-2025 13:57:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[02-Jan-2025 14:05:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[02-Jan-2025 15:49:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[02-Jan-2025 20:44:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[03-Jan-2025 08:59:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[03-Jan-2025 11:45:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[03-Jan-2025 16:59:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[03-Jan-2025 18:11:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[03-Jan-2025 18:24:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[03-Jan-2025 18:24:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[04-Jan-2025 23:27:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[05-Jan-2025 07:51:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[15-Jan-2025 09:26:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[20-Jan-2025 06:28:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[20-Jan-2025 08:07:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[23-Jan-2025 07:05:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[25-Jan-2025 15:32:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[27-Jan-2025 02:42:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[28-Jan-2025 02:41:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[29-Jan-2025 02:42:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[30-Jan-2025 19:09:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[30-Jan-2025 20:47:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[30-Jan-2025 21:15:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[30-Jan-2025 21:49:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[30-Jan-2025 22:36:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[30-Jan-2025 23:19:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[30-Jan-2025 23:52:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[31-Jan-2025 01:00:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[31-Jan-2025 01:36:58 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[31-Jan-2025 05:05:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[31-Jan-2025 07:21:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[04-Feb-2025 18:35:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[21-Feb-2025 08:45:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[21-Feb-2025 11:52:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[03-Mar-2025 18:40:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[03-Mar-2025 19:06:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[03-Mar-2025 20:49:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[03-Mar-2025 23:35:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[04-Mar-2025 02:46:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[04-Mar-2025 04:26:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[04-Mar-2025 05:02:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[06-Mar-2025 08:22:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[07-Mar-2025 06:51:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[07-Mar-2025 11:17:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[07-Mar-2025 14:22:11 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[07-Mar-2025 16:35:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[08-Mar-2025 00:48:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[09-Mar-2025 09:43:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[09-Mar-2025 17:10:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[22-Mar-2025 10:50:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[24-Mar-2025 04:39:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[25-Mar-2025 09:19:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[25-Mar-2025 10:46:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[28-Mar-2025 10:05:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[28-Mar-2025 11:06:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[28-Mar-2025 11:35:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[30-Mar-2025 22:24:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[30-Mar-2025 23:55:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[31-Mar-2025 00:55:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[31-Mar-2025 01:18:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[31-Mar-2025 03:47:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[31-Mar-2025 03:47:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[31-Mar-2025 11:39:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[03-Apr-2025 10:46:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[05-Apr-2025 19:41:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[06-Apr-2025 01:06:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[06-Apr-2025 21:47:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[06-Apr-2025 21:47:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[07-Apr-2025 07:51:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[07-Apr-2025 16:49:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[08-Apr-2025 07:24:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[08-Apr-2025 11:44:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[08-Apr-2025 14:21:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[09-Apr-2025 03:24:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[09-Apr-2025 04:04:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[09-Apr-2025 04:25:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[09-Apr-2025 09:15:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[09-Apr-2025 09:25:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[09-Apr-2025 11:09:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[09-Apr-2025 11:10:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[10-Apr-2025 12:07:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[11-Apr-2025 10:24:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[11-Apr-2025 10:45:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[11-Apr-2025 21:58:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[14-Apr-2025 18:41:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[15-Apr-2025 23:03:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[15-Apr-2025 23:45:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[16-Apr-2025 23:30:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[18-Apr-2025 07:10:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[18-Apr-2025 21:32:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[18-Apr-2025 22:22:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[19-Apr-2025 23:11:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[20-Apr-2025 01:26:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[20-Apr-2025 22:12:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[20-Apr-2025 23:46:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[21-Apr-2025 22:26:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[21-Apr-2025 23:24:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[22-Apr-2025 09:32:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[22-Apr-2025 18:48:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[22-Apr-2025 21:43:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[22-Apr-2025 23:15:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[23-Apr-2025 21:34:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[23-Apr-2025 23:03:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[24-Apr-2025 07:13:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[24-Apr-2025 23:27:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[25-Apr-2025 23:45:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[26-Apr-2025 23:08:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[27-Apr-2025 22:07:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[28-Apr-2025 00:53:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[28-Apr-2025 01:27:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[28-Apr-2025 04:35:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[28-Apr-2025 07:06:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[28-Apr-2025 22:56:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[29-Apr-2025 22:39:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[30-Apr-2025 23:07:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[01-May-2025 19:37:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[01-May-2025 22:59:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[01-May-2025 23:48:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[02-May-2025 22:41:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[03-May-2025 14:57:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[03-May-2025 15:52:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[03-May-2025 22:39:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[04-May-2025 23:24:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[05-May-2025 22:44:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[06-May-2025 23:08:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[07-May-2025 23:19:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[08-May-2025 22:41:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[09-May-2025 00:41:11 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[09-May-2025 02:56:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[09-May-2025 12:42:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[09-May-2025 23:05:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-May-2025 23:21:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[11-May-2025 23:43:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[12-May-2025 21:43:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[13-May-2025 21:35:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[18-May-2025 22:12:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[21-May-2025 20:20:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[11-Jun-2025 10:54:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[11-Jun-2025 11:31:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[11-Jun-2025 11:59:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[11-Jun-2025 15:39:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[14-Jun-2025 23:19:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[14-Jun-2025 23:48:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[15-Jun-2025 00:18:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[15-Jun-2025 00:30:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[15-Jun-2025 03:07:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[15-Jun-2025 03:29:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[15-Jun-2025 06:49:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[15-Jun-2025 08:57:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[15-Jun-2025 10:44:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[17-Jun-2025 22:49:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[08-Jul-2025 13:43:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[10-Jul-2025 18:38:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[12-Jul-2025 23:31:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[15-Jul-2025 09:40:58 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[15-Jul-2025 11:43:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[15-Jul-2025 12:12:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[15-Jul-2025 12:48:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[15-Jul-2025 14:09:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[15-Jul-2025 14:17:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[15-Jul-2025 15:33:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[15-Jul-2025 16:38:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[15-Jul-2025 16:48:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[15-Jul-2025 17:45:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[15-Jul-2025 18:14:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[15-Jul-2025 18:53:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[15-Jul-2025 19:43:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[27-Jul-2025 20:31:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[03-Aug-2025 12:03:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[05-Aug-2025 10:42:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[12-Aug-2025 21:09:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[12-Aug-2025 23:31:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[13-Aug-2025 03:30:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[13-Aug-2025 03:43:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[13-Aug-2025 04:06:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[13-Aug-2025 04:59:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[13-Aug-2025 10:06:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[16-Aug-2025 06:57:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[16-Aug-2025 08:45:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[16-Aug-2025 09:15:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[16-Aug-2025 09:21:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[16-Aug-2025 09:59:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[16-Aug-2025 13:04:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[18-Aug-2025 08:34:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[22-Aug-2025 09:44:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[22-Aug-2025 09:44:58 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[22-Aug-2025 09:45:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[22-Aug-2025 09:46:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[22-Aug-2025 09:47:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[22-Aug-2025 09:48:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[22-Aug-2025 09:49:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[22-Aug-2025 12:40:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[22-Aug-2025 12:40:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[22-Aug-2025 12:41:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[22-Aug-2025 12:42:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[22-Aug-2025 12:42:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[24-Aug-2025 12:19:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[11-Sep-2025 08:39:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[11-Sep-2025 08:44:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[11-Sep-2025 09:08:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[11-Sep-2025 09:23:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[11-Sep-2025 09:52:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[11-Sep-2025 10:31:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[11-Sep-2025 14:43:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[11-Sep-2025 14:50:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[11-Sep-2025 14:54:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[11-Sep-2025 14:56:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[11-Sep-2025 14:58:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[12-Sep-2025 04:45:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[12-Sep-2025 04:45:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[13-Sep-2025 07:16:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[13-Sep-2025 08:05:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[13-Sep-2025 09:18:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[13-Sep-2025 09:49:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[13-Sep-2025 10:13:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[13-Sep-2025 10:37:58 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[13-Sep-2025 13:12:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[13-Sep-2025 13:14:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[13-Sep-2025 14:39:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[13-Sep-2025 15:17:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[13-Sep-2025 15:37:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[13-Sep-2025 17:52:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[13-Sep-2025 18:20:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[14-Sep-2025 08:47:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[14-Sep-2025 08:50:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[16-Sep-2025 02:08:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[16-Sep-2025 02:14:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[16-Sep-2025 02:15:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[16-Sep-2025 02:18:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[17-Sep-2025 00:44:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[17-Sep-2025 00:44:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[17-Sep-2025 00:45:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[17-Sep-2025 00:45:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[17-Sep-2025 00:45:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[17-Sep-2025 00:47:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[17-Sep-2025 00:50:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[19-Sep-2025 14:15:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[22-Sep-2025 13:19:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[29-Sep-2025 22:37:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[18-Oct-2025 04:58:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[18-Oct-2025 05:52:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[18-Oct-2025 06:48:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[18-Oct-2025 07:26:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[18-Oct-2025 13:01:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[18-Oct-2025 18:43:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[21-Oct-2025 16:48:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[21-Oct-2025 17:07:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[21-Oct-2025 17:42:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[21-Oct-2025 17:44:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[21-Oct-2025 18:59:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[21-Oct-2025 21:05:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[22-Oct-2025 00:49:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[24-Oct-2025 16:46:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[25-Oct-2025 11:46:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[25-Oct-2025 14:16:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[25-Oct-2025 19:56:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[25-Oct-2025 23:21:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[25-Oct-2025 23:59:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[26-Oct-2025 01:17:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[26-Oct-2025 19:18:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[26-Oct-2025 23:17:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[27-Oct-2025 13:16:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[17-Nov-2025 16:24:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[17-Nov-2025 16:37:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[17-Nov-2025 16:44:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[17-Nov-2025 16:45:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[17-Nov-2025 18:09:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[17-Nov-2025 18:14:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[17-Nov-2025 21:42:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[17-Nov-2025 23:06:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[17-Nov-2025 23:41:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[18-Nov-2025 00:05:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[18-Nov-2025 01:26:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[18-Nov-2025 02:17:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[21-Nov-2025 11:01:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[08-Jan-2026 03:02:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[08-Jan-2026 06:12:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[08-Jan-2026 06:42:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[09-Jan-2026 10:14:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[09-Jan-2026 12:32:11 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[09-Jan-2026 23:48:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-Jan-2026 11:03:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[10-Jan-2026 19:20:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[10-Jan-2026 19:57:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[11-Jan-2026 17:20:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[11-Jan-2026 22:52:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[12-Jan-2026 17:01:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[13-Jan-2026 10:10:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[13-Jan-2026 10:52:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[13-Jan-2026 16:51:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[13-Jan-2026 16:54:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[14-Jan-2026 01:55:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[15-Jan-2026 01:20:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[15-Jan-2026 09:41:58 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[15-Jan-2026 10:01:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[15-Jan-2026 10:01:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[15-Jan-2026 16:57:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[16-Jan-2026 01:11:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[16-Jan-2026 16:31:58 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[16-Jan-2026 17:03:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[17-Jan-2026 10:13:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[17-Jan-2026 10:50:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[17-Jan-2026 16:28:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[17-Jan-2026 16:35:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[18-Jan-2026 01:32:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[18-Jan-2026 16:30:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[19-Jan-2026 10:51:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[19-Jan-2026 16:36:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[19-Jan-2026 16:42:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[20-Jan-2026 01:41:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[20-Jan-2026 16:21:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[20-Jan-2026 16:40:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[21-Jan-2026 10:14:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[21-Jan-2026 18:09:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[21-Jan-2026 18:10:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[22-Jan-2026 02:04:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[22-Jan-2026 04:28:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[22-Jan-2026 04:46:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[22-Jan-2026 05:41:11 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[22-Jan-2026 09:59:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[22-Jan-2026 10:33:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[22-Jan-2026 11:57:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[22-Jan-2026 12:44:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[22-Jan-2026 16:48:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[23-Jan-2026 11:31:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[23-Jan-2026 17:36:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[23-Jan-2026 17:42:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[24-Jan-2026 01:33:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[24-Jan-2026 04:39:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[24-Jan-2026 16:34:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[24-Jan-2026 17:00:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[25-Jan-2026 09:54:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[25-Jan-2026 10:19:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[25-Jan-2026 10:32:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[25-Jan-2026 18:23:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[25-Jan-2026 18:34:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[25-Jan-2026 18:41:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[25-Jan-2026 19:27:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[25-Jan-2026 21:25:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[26-Jan-2026 03:19:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[26-Jan-2026 16:33:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[26-Jan-2026 16:35:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[27-Jan-2026 16:10:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[27-Jan-2026 16:11:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[28-Jan-2026 02:01:44 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[29-Jan-2026 12:29:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[30-Jan-2026 06:21:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[30-Jan-2026 10:02:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[30-Jan-2026 16:20:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[30-Jan-2026 16:52:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[31-Jan-2026 16:10:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[01-Feb-2026 01:25:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[01-Feb-2026 16:33:11 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[01-Feb-2026 16:50:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[01-Feb-2026 20:22:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[01-Feb-2026 20:23:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[01-Feb-2026 20:23:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[02-Feb-2026 00:02:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[02-Feb-2026 00:07:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[02-Feb-2026 00:10:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[02-Feb-2026 00:11:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[02-Feb-2026 00:13:15 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[02-Feb-2026 00:14:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[02-Feb-2026 00:14:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[02-Feb-2026 00:15:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[02-Feb-2026 02:04:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[02-Feb-2026 02:04:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[03-Feb-2026 03:01:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[03-Feb-2026 06:11:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[03-Feb-2026 13:34:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[03-Feb-2026 17:01:04 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[03-Feb-2026 17:08:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[04-Feb-2026 16:48:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[04-Feb-2026 16:50:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[05-Feb-2026 02:01:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[05-Feb-2026 17:47:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[05-Feb-2026 18:39:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[06-Feb-2026 22:06:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[06-Feb-2026 22:06:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[08-Feb-2026 17:03:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[09-Feb-2026 06:39:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-Feb-2026 23:39:50 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[11-Feb-2026 09:04:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[11-Feb-2026 12:52:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[13-Feb-2026 00:36:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[14-Feb-2026 23:31:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[16-Feb-2026 20:38:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[18-Feb-2026 01:52:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[18-Feb-2026 03:04:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[18-Feb-2026 04:20:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[18-Feb-2026 20:42:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[20-Feb-2026 21:03:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[22-Feb-2026 21:10:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[23-Feb-2026 17:41:30 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[23-Feb-2026 18:27:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[23-Feb-2026 20:44:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[23-Feb-2026 22:10:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[23-Feb-2026 22:32:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[23-Feb-2026 22:39:00 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[23-Feb-2026 22:44:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[24-Feb-2026 01:39:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[24-Feb-2026 03:03:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[24-Feb-2026 21:18:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[26-Feb-2026 21:56:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[28-Feb-2026 07:23:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[02-Mar-2026 22:31:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[04-Mar-2026 22:42:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[05-Mar-2026 16:05:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[05-Mar-2026 16:08:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[05-Mar-2026 16:12:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[05-Mar-2026 16:20:37 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[05-Mar-2026 16:36:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[05-Mar-2026 19:45:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[05-Mar-2026 19:46:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[05-Mar-2026 19:48:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[05-Mar-2026 19:52:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[05-Mar-2026 19:56:08 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[05-Mar-2026 20:04:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[05-Mar-2026 20:19:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[05-Mar-2026 20:50:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[06-Mar-2026 22:28:58 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[08-Mar-2026 21:51:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-Mar-2026 18:41:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-Mar-2026 21:36:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[11-Mar-2026 15:31:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[11-Mar-2026 15:31:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[12-Mar-2026 22:31:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[13-Mar-2026 04:11:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[13-Mar-2026 08:07:23 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[14-Mar-2026 10:59:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[14-Mar-2026 15:22:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[14-Mar-2026 15:31:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[14-Mar-2026 21:41:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[16-Mar-2026 11:22:22 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[16-Mar-2026 12:08:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[16-Mar-2026 21:31:31 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[17-Mar-2026 10:33:02 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[18-Mar-2026 08:26:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[18-Mar-2026 10:11:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[18-Mar-2026 22:01:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[19-Mar-2026 22:17:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[19-Mar-2026 22:21:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[19-Mar-2026 23:17:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[20-Mar-2026 11:24:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[20-Mar-2026 23:05:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[22-Mar-2026 02:41:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[22-Mar-2026 02:41:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[22-Mar-2026 06:39:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[22-Mar-2026 12:02:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[22-Mar-2026 13:15:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[22-Mar-2026 14:01:48 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[22-Mar-2026 14:21:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[22-Mar-2026 14:36:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[22-Mar-2026 15:24:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[22-Mar-2026 18:09:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[22-Mar-2026 19:40:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[22-Mar-2026 20:20:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[22-Mar-2026 22:40:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[22-Mar-2026 22:49:34 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[23-Mar-2026 00:06:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[23-Mar-2026 08:36:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[23-Mar-2026 09:28:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[24-Mar-2026 09:27:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[24-Mar-2026 10:52:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[24-Mar-2026 13:52:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[24-Mar-2026 14:20:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[24-Mar-2026 17:58:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[24-Mar-2026 18:38:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[24-Mar-2026 18:47:55 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[24-Mar-2026 22:33:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[24-Mar-2026 23:49:57 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[25-Mar-2026 06:02:52 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[25-Mar-2026 09:41:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[25-Mar-2026 17:16:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[25-Mar-2026 19:37:09 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[25-Mar-2026 23:05:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[26-Mar-2026 03:13:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[26-Mar-2026 08:20:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[26-Mar-2026 11:06:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[26-Mar-2026 11:22:51 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[26-Mar-2026 14:34:43 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[26-Mar-2026 14:35:12 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[26-Mar-2026 17:05:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[26-Mar-2026 20:03:26 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[27-Mar-2026 00:02:07 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[27-Mar-2026 18:36:21 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[28-Mar-2026 11:59:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[29-Mar-2026 01:40:53 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[31-Mar-2026 01:24:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[04-Apr-2026 04:06:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[04-Apr-2026 12:06:14 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[05-Apr-2026 18:21:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[05-Apr-2026 23:31:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[05-Apr-2026 23:31:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[06-Apr-2026 01:54:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[06-Apr-2026 01:54:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[06-Apr-2026 01:54:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[08-Apr-2026 06:03:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-Apr-2026 04:51:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-Apr-2026 06:27:03 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-Apr-2026 06:27:10 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-Apr-2026 06:27:13 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-Apr-2026 08:52:17 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[10-Apr-2026 08:52:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[12-Apr-2026 05:21:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[12-Apr-2026 18:20:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[16-Apr-2026 04:55:05 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[16-Apr-2026 22:23:36 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[16-Apr-2026 22:23:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[16-Apr-2026 22:23:46 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[16-Apr-2026 23:00:20 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/logging.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/logging.php on line 21 +[17-Apr-2026 05:31:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[18-Apr-2026 12:39:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[18-Apr-2026 12:39:35 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[18-Apr-2026 12:39:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[18-Apr-2026 18:25:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[18-Apr-2026 21:01:19 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[18-Apr-2026 22:26:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/chatify.php:9 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/chatify.php on line 9 +[18-Apr-2026 22:36:24 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/auth.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/auth.php on line 17 +[19-Apr-2026 00:46:56 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/mail.php:17 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/mail.php on line 17 +[19-Apr-2026 01:24:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[19-Apr-2026 05:44:11 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/cache.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/cache.php on line 18 +[19-Apr-2026 05:55:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/session.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/session.php on line 21 +[19-Apr-2026 06:07:47 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/app.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/app.php on line 16 +[19-Apr-2026 07:50:49 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/database.php:19 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/database.php on line 19 +[19-Apr-2026 09:12:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[20-Apr-2026 12:57:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/broadcasting.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/broadcasting.php on line 18 +[20-Apr-2026 19:10:41 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[20-Apr-2026 19:14:01 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 +[22-Apr-2026 12:15:06 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/queue.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/queue.php on line 16 +[22-Apr-2026 17:22:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[24-Apr-2026 18:52:25 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[26-Apr-2026 16:31:33 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[28-Apr-2026 16:02:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[30-Apr-2026 12:35:32 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/services.php:18 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/services.php on line 18 +[30-Apr-2026 15:42:38 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[01-May-2026 16:21:18 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/reverb.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/reverb.php on line 16 +[10-May-2026 09:37:27 UTC] PHP Fatal error: Uncaught Error: Call to undefined function env() in /home/humicpro/public_html/aigo/config/filesystems.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/config/filesystems.php on line 16 diff --git a/config/filesystems.php b/config/filesystems.php new file mode 100644 index 0000000..44fe9c8 --- /dev/null +++ b/config/filesystems.php @@ -0,0 +1,76 @@ + env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Below you may configure as many filesystem disks as necessary, and you + | may even configure multiple disks for the same driver. Examples for + | most supported storage drivers are configured here for reference. + | + | Supported Drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app'), + 'throw' => false, + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + 'throw' => false, + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'throw' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/config/logging.php b/config/logging.php new file mode 100644 index 0000000..d526b64 --- /dev/null +++ b/config/logging.php @@ -0,0 +1,132 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Deprecations Log Channel + |-------------------------------------------------------------------------- + | + | This option controls the log channel that should be used to log warnings + | regarding deprecated PHP and library features. This allows you to get + | your application ready for upcoming major versions of dependencies. + | + */ + + 'deprecations' => [ + 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), + 'trace' => env('LOG_DEPRECATIONS_TRACE', false), + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Laravel + | utilizes the Monolog PHP logging library, which includes a variety + | of powerful log handlers and formatters that you're free to use. + | + | Available Drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", "custom", "stack" + | + */ + + 'channels' => [ + + 'stack' => [ + 'driver' => 'stack', + 'channels' => explode(',', env('LOG_STACK', 'single')), + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'days' => env('LOG_DAILY_DAYS', 14), + 'replace_placeholders' => true, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'), + 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'), + 'level' => env('LOG_LEVEL', 'critical'), + 'replace_placeholders' => true, + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER), + 'replace_placeholders' => true, + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + + ], + +]; diff --git a/config/mail.php b/config/mail.php new file mode 100644 index 0000000..a4a02fe --- /dev/null +++ b/config/mail.php @@ -0,0 +1,103 @@ + env('MAIL_MAILER', 'log'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers that can be used + | when delivering an email. You may specify which one you're using for + | your mailers below. You may also add additional mailers if needed. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", + | "postmark", "log", "array", "failover", "roundrobin" + | + */ + + 'mailers' => [ + + 'smtp' => [ + 'transport' => 'smtp', + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', '127.0.0.1'), + 'port' => env('MAIL_PORT', 2525), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN'), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'), + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + + 'failover' => [ + 'transport' => 'failover', + 'mailers' => [ + 'smtp', + 'log', + ], + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all emails sent by your application to be sent from + | the same address. Here you may specify a name and address that is + | used globally for all emails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + +]; diff --git a/config/queue.php b/config/queue.php new file mode 100644 index 0000000..4f689e9 --- /dev/null +++ b/config/queue.php @@ -0,0 +1,112 @@ + env('QUEUE_CONNECTION', 'database'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection options for every queue backend + | used by your application. An example configuration is provided for + | each backend supported by Laravel. You're also free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'connection' => env('DB_QUEUE_CONNECTION', null), + 'table' => env('DB_QUEUE_TABLE', 'jobs'), + 'queue' => env('DB_QUEUE', 'default'), + 'retry_after' => env('DB_QUEUE_RETRY_AFTER', 90), + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'), + 'queue' => env('BEANSTALKD_QUEUE', 'default'), + 'retry_after' => env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), + 'block_for' => 0, + 'after_commit' => false, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'default'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'), + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => env('REDIS_QUEUE_RETRY_AFTER', 90), + 'block_for' => null, + 'after_commit' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. These options can be updated to any database + | connection and table which has been defined by your application. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'job_batches', + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control how and where failed jobs are stored. Laravel ships with + | support for storing failed jobs in a simple file or in a database. + | + | Supported drivers: "database-uuids", "dynamodb", "file", "null" + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/config/reverb.php b/config/reverb.php new file mode 100644 index 0000000..a17d7d4 --- /dev/null +++ b/config/reverb.php @@ -0,0 +1,82 @@ + env('REVERB_SERVER', 'reverb'), + + /* + |-------------------------------------------------------------------------- + | Reverb Servers + |-------------------------------------------------------------------------- + | + | Here you may define details for each of the supported Reverb servers. + | Each server has its own configuration options that are defined in + | the array below. You should ensure all the options are present. + | + */ + + 'servers' => [ + + 'reverb' => [ + 'host' => env('REVERB_SERVER_HOST', '0.0.0.0'), + 'port' => env('REVERB_SERVER_PORT', 8080), + 'hostname' => env('REVERB_HOST'), + 'options' => [ + 'tls' => [], + ], + 'max_request_size' => env('REVERB_MAX_REQUEST_SIZE', 10_000), + 'scaling' => [ + 'enabled' => env('REVERB_SCALING_ENABLED', false), + 'channel' => env('REVERB_SCALING_CHANNEL', 'reverb'), + ], + 'pulse_ingest_interval' => env('REVERB_PULSE_INGEST_INTERVAL', 15), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Reverb Applications + |-------------------------------------------------------------------------- + | + | Here you may define how Reverb applications are managed. If you choose + | to use the "config" provider, you may define an array of apps which + | your server will support, including their connection credentials. + | + */ + + 'apps' => [ + + 'provider' => 'config', + + 'apps' => [ + [ + 'key' => env('REVERB_APP_KEY'), + 'secret' => env('REVERB_APP_SECRET'), + 'app_id' => env('REVERB_APP_ID'), + 'options' => [ + 'host' => env('REVERB_HOST'), + 'port' => env('REVERB_PORT', 443), + 'scheme' => env('REVERB_SCHEME', 'https'), + 'useTLS' => env('REVERB_SCHEME', 'https') === 'https', + ], + 'allowed_origins' => ['*'], + 'ping_interval' => env('REVERB_APP_PING_INTERVAL', 60), + 'max_message_size' => env('REVERB_APP_MAX_MESSAGE_SIZE', 10_000), + ], + ], + + ], + +]; diff --git a/config/services.php b/config/services.php new file mode 100644 index 0000000..6bb68f6 --- /dev/null +++ b/config/services.php @@ -0,0 +1,34 @@ + [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + + 'slack' => [ + 'notifications' => [ + 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), + 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), + ], + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 0000000..0e22ee4 --- /dev/null +++ b/config/session.php @@ -0,0 +1,218 @@ + env('SESSION_DRIVER', 'database'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to expire immediately when the browser is closed then you may + | indicate that via the expire_on_close configuration option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false), + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it's stored. All encryption is performed + | automatically by Laravel and you may use the session like normal. + | + */ + + 'encrypt' => env('SESSION_ENCRYPT', false), + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When utilizing the "file" session driver, the session files are placed + | on disk. The default storage location is defined here; however, you + | are free to provide another location where they should be stored. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION'), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table to + | be used to store sessions. Of course, a sensible default is defined + | for you; however, you're welcome to change this to another table. + | + */ + + 'table' => env('SESSION_TABLE', 'sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | When using one of the framework's cache driven session backends, you may + | define the cache store which should be used to store the session data + | between requests. This must match one of your defined cache stores. + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE'), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the session cookie that is created by + | the framework. Typically, you should not need to change this value + | since doing so does not grant a meaningful security improvement. + | + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application, but you're free to change this when necessary. + | + */ + + 'path' => env('SESSION_PATH', '/'), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | This value determines the domain and subdomains the session cookie is + | available to. By default, the cookie will be available to the root + | domain and all subdomains. Typically, this shouldn't be changed. + | + */ + + 'domain' => env('SESSION_DOMAIN'), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you when it can't be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. It's unlikely you should disable this option. + | + */ + + 'http_only' => env('SESSION_HTTP_ONLY', true), + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" to permit secure cross-site requests. + | + | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => env('SESSION_SAME_SITE', 'lax'), + + /* + |-------------------------------------------------------------------------- + | Partitioned Cookies + |-------------------------------------------------------------------------- + | + | Setting this value to true will tie the cookie to the top-level site for + | a cross-site context. Partitioned cookies are accepted by the browser + | when flagged "secure" and the Same-Site attribute is set to "none". + | + */ + + 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false), + +]; diff --git a/database/.gitignore b/database/.gitignore new file mode 100644 index 0000000..9b19b93 --- /dev/null +++ b/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/database/factories/ConsultationFactory.php b/database/factories/ConsultationFactory.php new file mode 100644 index 0000000..0c7f233 --- /dev/null +++ b/database/factories/ConsultationFactory.php @@ -0,0 +1,43 @@ + + */ +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 + */ + 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']), + ]; + } +} \ No newline at end of file diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php new file mode 100644 index 0000000..ec0771b --- /dev/null +++ b/database/factories/UserFactory.php @@ -0,0 +1,51 @@ + + */ +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 + */ + 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, + ]); + } +} diff --git a/database/factories/error_log b/database/factories/error_log new file mode 100644 index 0000000..baeeb22 --- /dev/null +++ b/database/factories/error_log @@ -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 diff --git a/database/migrations/0001_01_01_000000_create_users_table.php b/database/migrations/0001_01_01_000000_create_users_table.php new file mode 100644 index 0000000..58f761a --- /dev/null +++ b/database/migrations/0001_01_01_000000_create_users_table.php @@ -0,0 +1,54 @@ +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'); + } +}; diff --git a/database/migrations/0001_01_01_000001_create_cache_table.php b/database/migrations/0001_01_01_000001_create_cache_table.php new file mode 100644 index 0000000..b9c106b --- /dev/null +++ b/database/migrations/0001_01_01_000001_create_cache_table.php @@ -0,0 +1,35 @@ +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'); + } +}; diff --git a/database/migrations/0001_01_01_000002_create_jobs_table.php b/database/migrations/0001_01_01_000002_create_jobs_table.php new file mode 100644 index 0000000..425e705 --- /dev/null +++ b/database/migrations/0001_01_01_000002_create_jobs_table.php @@ -0,0 +1,57 @@ +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'); + } +}; diff --git a/database/migrations/2024_04_05_111159_create_health_datas_table.php b/database/migrations/2024_04_05_111159_create_health_datas_table.php new file mode 100644 index 0000000..5d0fc35 --- /dev/null +++ b/database/migrations/2024_04_05_111159_create_health_datas_table.php @@ -0,0 +1,37 @@ +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'); + } +}; diff --git a/database/migrations/2024_04_09_053948_create_physical_activities_table.php b/database/migrations/2024_04_09_053948_create_physical_activities_table.php new file mode 100644 index 0000000..24aa604 --- /dev/null +++ b/database/migrations/2024_04_09_053948_create_physical_activities_table.php @@ -0,0 +1,34 @@ +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'); + } +}; diff --git a/database/migrations/2024_04_29_999999_add_active_status_to_users.php b/database/migrations/2024_04_29_999999_add_active_status_to_users.php new file mode 100644 index 0000000..26151a2 --- /dev/null +++ b/database/migrations/2024_04_29_999999_add_active_status_to_users.php @@ -0,0 +1,35 @@ +boolean('active_status')->default(0); + } + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('active_status'); + }); + } +} diff --git a/database/migrations/2024_04_29_999999_add_avatar_to_users.php b/database/migrations/2024_04_29_999999_add_avatar_to_users.php new file mode 100644 index 0000000..8a5b331 --- /dev/null +++ b/database/migrations/2024_04_29_999999_add_avatar_to_users.php @@ -0,0 +1,35 @@ +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'); + }); + } +} diff --git a/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php b/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php new file mode 100644 index 0000000..1942688 --- /dev/null +++ b/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php @@ -0,0 +1,35 @@ +boolean('dark_mode')->default(0); + } + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('dark_mode'); + }); + } +} diff --git a/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php b/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php new file mode 100644 index 0000000..0346a92 --- /dev/null +++ b/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php @@ -0,0 +1,34 @@ +string('messenger_color')->nullable(); + } + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('messenger_color'); + }); + } +} diff --git a/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php b/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php new file mode 100644 index 0000000..6f961b5 --- /dev/null +++ b/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php @@ -0,0 +1,33 @@ +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'); + } +} diff --git a/database/migrations/2024_04_29_999999_create_chatify_messages_table.php b/database/migrations/2024_04_29_999999_create_chatify_messages_table.php new file mode 100644 index 0000000..ed82415 --- /dev/null +++ b/database/migrations/2024_04_29_999999_create_chatify_messages_table.php @@ -0,0 +1,36 @@ +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'); + } +} diff --git a/database/migrations/2024_05_01_125310_create_consultations_table.php b/database/migrations/2024_05_01_125310_create_consultations_table.php new file mode 100644 index 0000000..d62e644 --- /dev/null +++ b/database/migrations/2024_05_01_125310_create_consultations_table.php @@ -0,0 +1,36 @@ +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'); + } +}; diff --git a/database/migrations/2024_05_24_175930_create_notifications_table.php b/database/migrations/2024_05_24_175930_create_notifications_table.php new file mode 100644 index 0000000..e244ae7 --- /dev/null +++ b/database/migrations/2024_05_24_175930_create_notifications_table.php @@ -0,0 +1,34 @@ +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'); + } +}; diff --git a/database/migrations/2024_06_01_051819_create_result_table.php b/database/migrations/2024_06_01_051819_create_result_table.php new file mode 100644 index 0000000..a88ccce --- /dev/null +++ b/database/migrations/2024_06_01_051819_create_result_table.php @@ -0,0 +1,36 @@ +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'); + } +}; diff --git a/database/migrations/error_log b/database/migrations/error_log new file mode 100644 index 0000000..70187f7 --- /dev/null +++ b/database/migrations/error_log @@ -0,0 +1,2812 @@ +[23-Jun-2024 06:04:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[23-Jun-2024 22:46:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[23-Jun-2024 22:47:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[23-Jun-2024 22:47:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[23-Jun-2024 22:48:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[23-Jun-2024 22:54:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[23-Jun-2024 22:57:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[23-Jun-2024 23:00:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[23-Jun-2024 23:04:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[23-Jun-2024 23:04:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[23-Jun-2024 23:05:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[23-Jun-2024 23:06:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[23-Jun-2024 23:07:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[24-Jun-2024 00:58:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[24-Jun-2024 00:58:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[24-Jun-2024 00:58:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[24-Jun-2024 00:58:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[24-Jun-2024 00:58:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[24-Jun-2024 00:58:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[24-Jun-2024 04:31:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[24-Jun-2024 04:31:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[24-Jun-2024 04:31:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[24-Jun-2024 04:31:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[24-Jun-2024 04:32:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[24-Jun-2024 04:33:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[24-Jun-2024 04:36:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[24-Jun-2024 06:46:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[24-Jun-2024 06:52:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[25-Jun-2024 18:39:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[25-Jun-2024 18:39:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[25-Jun-2024 18:39:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[25-Jun-2024 18:39:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[25-Jun-2024 18:39:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[25-Jun-2024 18:39:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[25-Jun-2024 18:39:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[25-Jun-2024 18:40:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[25-Jun-2024 18:40:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[25-Jun-2024 18:42:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[25-Jun-2024 21:04:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[25-Jun-2024 21:04:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[25-Jun-2024 21:04:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[25-Jun-2024 21:05:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[27-Jun-2024 19:52:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[28-Jun-2024 14:46:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[28-Jun-2024 14:46:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[28-Jun-2024 14:47:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[28-Jun-2024 14:48:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[28-Jun-2024 14:49:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[28-Jun-2024 14:49:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[28-Jun-2024 14:50:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[28-Jun-2024 14:51:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[28-Jun-2024 14:52:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[28-Jun-2024 14:53:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[28-Jun-2024 14:55:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[28-Jun-2024 14:59:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[28-Jun-2024 15:04:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[29-Jun-2024 11:39:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[29-Jun-2024 11:50:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[29-Jun-2024 12:05:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[29-Jun-2024 15:47:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[01-Jul-2024 01:07:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[01-Jul-2024 09:36:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[01-Jul-2024 09:36:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[01-Jul-2024 20:35:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[01-Jul-2024 22:53:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[02-Jul-2024 04:03:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[02-Jul-2024 04:03:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[02-Jul-2024 04:22:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[02-Jul-2024 04:32:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[02-Jul-2024 04:35:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[02-Jul-2024 04:38:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[02-Jul-2024 04:57:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[02-Jul-2024 04:58:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[02-Jul-2024 04:59:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[02-Jul-2024 05:00:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[02-Jul-2024 05:41:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[02-Jul-2024 06:07:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[02-Jul-2024 07:23:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[03-Jul-2024 02:02:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[03-Jul-2024 02:55:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[03-Jul-2024 06:25:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[03-Jul-2024 07:18:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[03-Jul-2024 18:55:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[03-Jul-2024 20:46:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[04-Jul-2024 03:27:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[04-Jul-2024 05:23:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[04-Jul-2024 11:46:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[04-Jul-2024 13:39:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[04-Jul-2024 13:51:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[05-Jul-2024 14:44:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[05-Jul-2024 14:47:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[05-Jul-2024 14:49:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[05-Jul-2024 14:52:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[05-Jul-2024 14:53:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[06-Jul-2024 13:34:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[06-Jul-2024 14:26:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[06-Jul-2024 17:38:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[06-Jul-2024 18:23:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[24-Jul-2024 15:00:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[25-Jul-2024 19:47:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[27-Jul-2024 19:26:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[29-Jul-2024 15:01:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[29-Jul-2024 20:50:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[30-Jul-2024 14:21:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[03-Aug-2024 00:41:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[03-Aug-2024 00:41:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[03-Aug-2024 00:41:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[03-Aug-2024 00:41:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[03-Aug-2024 00:41:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[03-Aug-2024 00:41:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[03-Aug-2024 00:41:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[03-Aug-2024 00:41:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[03-Aug-2024 00:41:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[03-Aug-2024 00:41:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[03-Aug-2024 00:41:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[03-Aug-2024 00:41:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[03-Aug-2024 00:41:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[03-Aug-2024 00:41:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[03-Aug-2024 00:41:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[03-Aug-2024 00:41:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[03-Aug-2024 00:41:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[03-Aug-2024 00:41:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[03-Aug-2024 00:41:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[03-Aug-2024 00:41:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[03-Aug-2024 00:41:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[03-Aug-2024 00:41:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[03-Aug-2024 00:41:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[03-Aug-2024 00:41:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[03-Aug-2024 00:41:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[03-Aug-2024 00:41:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[03-Aug-2024 00:41:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[03-Aug-2024 00:42:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[06-Aug-2024 20:56:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[06-Aug-2024 20:57:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[06-Aug-2024 21:04:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[12-Aug-2024 01:21:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[17-Aug-2024 16:16:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[17-Aug-2024 16:16:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[17-Aug-2024 16:16:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[17-Aug-2024 16:17:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[17-Aug-2024 16:17:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[17-Aug-2024 16:17:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[17-Aug-2024 16:17:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[17-Aug-2024 16:17:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[17-Aug-2024 16:17:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[17-Aug-2024 16:17:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[17-Aug-2024 16:17:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[17-Aug-2024 16:17:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[17-Aug-2024 16:17:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[17-Aug-2024 16:17:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[25-Aug-2024 22:41:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[29-Aug-2024 03:22:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[29-Aug-2024 03:40:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[29-Aug-2024 05:45:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[29-Aug-2024 07:05:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[29-Aug-2024 11:44:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[29-Aug-2024 12:19:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[29-Aug-2024 13:13:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[29-Aug-2024 13:28:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[29-Aug-2024 13:30:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[29-Aug-2024 13:33:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[29-Aug-2024 13:58:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[29-Aug-2024 14:25:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[29-Aug-2024 16:14:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[29-Aug-2024 16:37:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[08-Sep-2024 02:45:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[02-Oct-2024 07:38:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[03-Oct-2024 05:32:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[03-Oct-2024 08:23:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[03-Oct-2024 16:50:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[03-Oct-2024 17:32:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[03-Oct-2024 21:21:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[03-Oct-2024 21:23:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[03-Oct-2024 22:28:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[03-Oct-2024 22:33:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[04-Oct-2024 01:28:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[04-Oct-2024 02:04:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[04-Oct-2024 02:21:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[04-Oct-2024 02:52:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[04-Oct-2024 05:16:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[04-Oct-2024 08:45:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[07-Oct-2024 15:35:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[07-Oct-2024 16:38:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[07-Oct-2024 17:27:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[08-Oct-2024 18:19:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[08-Oct-2024 19:17:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[09-Oct-2024 07:18:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[09-Oct-2024 09:09:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[10-Oct-2024 09:42:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[10-Oct-2024 09:42:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[12-Oct-2024 12:00:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[12-Oct-2024 12:57:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[13-Oct-2024 14:13:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[13-Oct-2024 16:01:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[07-Nov-2024 01:31:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[07-Nov-2024 03:52:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[07-Nov-2024 04:00:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[07-Nov-2024 05:29:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[07-Nov-2024 05:30:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[07-Nov-2024 07:08:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[07-Nov-2024 09:42:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[07-Nov-2024 12:00:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[07-Nov-2024 12:17:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[07-Nov-2024 14:12:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[07-Nov-2024 15:13:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[12-Nov-2024 15:54:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[15-Nov-2024 23:30:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[16-Nov-2024 05:18:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[22-Nov-2024 21:48:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[22-Nov-2024 21:48:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[22-Nov-2024 21:48:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[22-Nov-2024 21:49:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[22-Nov-2024 21:49:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[22-Nov-2024 21:49:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[22-Nov-2024 21:49:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[22-Nov-2024 21:49:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[22-Nov-2024 21:49:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[22-Nov-2024 21:49:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[22-Nov-2024 21:49:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[22-Nov-2024 21:49:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[22-Nov-2024 21:49:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[22-Nov-2024 21:49:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[06-Dec-2024 20:10:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[06-Dec-2024 23:20:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[06-Dec-2024 23:29:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[06-Dec-2024 23:47:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[07-Dec-2024 01:53:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[07-Dec-2024 02:15:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[07-Dec-2024 04:20:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[07-Dec-2024 04:57:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[07-Dec-2024 07:16:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[07-Dec-2024 07:34:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[07-Dec-2024 09:58:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[11-Dec-2024 22:30:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[20-Dec-2024 09:51:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[20-Dec-2024 18:59:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[05-Jan-2025 01:44:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[09-Jan-2025 03:01:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[09-Jan-2025 04:27:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[09-Jan-2025 05:26:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[09-Jan-2025 05:37:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[09-Jan-2025 07:55:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[09-Jan-2025 08:07:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[09-Jan-2025 09:03:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[09-Jan-2025 10:27:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[09-Jan-2025 11:18:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[09-Jan-2025 12:54:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[09-Jan-2025 13:33:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[09-Jan-2025 17:12:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[10-Jan-2025 16:54:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[10-Jan-2025 17:37:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[19-Jan-2025 04:40:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[19-Jan-2025 21:24:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[23-Jan-2025 07:36:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[26-Jan-2025 03:05:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[02-Feb-2025 21:23:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[03-Feb-2025 05:38:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[05-Feb-2025 08:47:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[05-Feb-2025 16:30:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[06-Feb-2025 03:54:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[06-Feb-2025 09:22:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[06-Feb-2025 09:30:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[07-Feb-2025 00:34:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[07-Feb-2025 00:34:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[07-Feb-2025 08:48:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[07-Feb-2025 09:16:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[07-Feb-2025 11:31:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[08-Feb-2025 18:06:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[10-Feb-2025 06:34:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[10-Feb-2025 07:00:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[10-Feb-2025 07:00:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[10-Feb-2025 11:12:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[10-Feb-2025 11:38:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[10-Feb-2025 14:14:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[10-Feb-2025 16:42:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[10-Feb-2025 17:59:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[10-Feb-2025 18:47:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[10-Feb-2025 20:12:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[10-Feb-2025 20:14:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[10-Feb-2025 21:06:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[10-Feb-2025 23:53:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[11-Feb-2025 23:23:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[12-Feb-2025 06:59:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[12-Feb-2025 07:01:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[12-Feb-2025 07:02:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[12-Feb-2025 07:07:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[12-Feb-2025 07:09:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[12-Feb-2025 13:21:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[12-Feb-2025 13:21:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[12-Feb-2025 13:22:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[14-Feb-2025 22:33:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[14-Feb-2025 22:35:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[14-Feb-2025 22:40:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[15-Feb-2025 23:20:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[21-Feb-2025 08:46:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[09-Mar-2025 09:47:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[09-Mar-2025 19:23:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[09-Mar-2025 22:33:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[14-Mar-2025 15:58:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[14-Mar-2025 16:02:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[14-Mar-2025 16:17:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[14-Mar-2025 17:20:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[14-Mar-2025 19:41:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[14-Mar-2025 20:01:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[14-Mar-2025 23:08:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[14-Mar-2025 23:16:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[15-Mar-2025 03:13:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[15-Mar-2025 07:31:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[28-Mar-2025 06:55:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[28-Mar-2025 11:39:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[28-Mar-2025 12:33:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[28-Mar-2025 12:58:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[28-Mar-2025 13:50:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[28-Mar-2025 15:37:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[28-Mar-2025 16:21:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[29-Mar-2025 04:11:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[03-Apr-2025 10:48:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[03-Apr-2025 11:10:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[03-Apr-2025 14:42:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[04-Apr-2025 04:08:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[04-Apr-2025 04:19:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[08-Apr-2025 11:59:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[11-Apr-2025 10:52:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[14-Apr-2025 01:46:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[14-Apr-2025 12:09:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[14-Apr-2025 12:16:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[14-Apr-2025 23:26:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[15-Apr-2025 21:58:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[15-Apr-2025 22:03:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[15-Apr-2025 23:08:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[16-Apr-2025 09:16:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[16-Apr-2025 22:45:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[18-Apr-2025 21:38:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[18-Apr-2025 21:47:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[18-Apr-2025 21:53:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[18-Apr-2025 21:54:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[19-Apr-2025 15:16:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[19-Apr-2025 22:22:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[19-Apr-2025 23:41:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[20-Apr-2025 00:22:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[20-Apr-2025 21:05:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[20-Apr-2025 22:55:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[21-Apr-2025 22:44:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[21-Apr-2025 23:15:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[22-Apr-2025 06:00:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[22-Apr-2025 07:38:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[22-Apr-2025 09:16:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[22-Apr-2025 11:54:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[22-Apr-2025 12:42:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[22-Apr-2025 13:21:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[22-Apr-2025 15:53:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[22-Apr-2025 16:03:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[22-Apr-2025 17:23:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[22-Apr-2025 17:41:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[22-Apr-2025 19:32:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[22-Apr-2025 19:47:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[22-Apr-2025 19:52:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[22-Apr-2025 22:06:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[22-Apr-2025 22:35:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[23-Apr-2025 21:35:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[23-Apr-2025 21:57:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[24-Apr-2025 22:50:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[24-Apr-2025 22:52:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[25-Apr-2025 22:57:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[26-Apr-2025 00:11:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[26-Apr-2025 22:30:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[27-Apr-2025 22:02:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[28-Apr-2025 11:44:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[28-Apr-2025 22:37:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[01-May-2025 05:37:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[01-May-2025 10:08:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[06-May-2025 10:41:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[09-May-2025 21:06:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[10-May-2025 14:27:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[12-May-2025 17:04:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[13-May-2025 07:42:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[13-May-2025 07:42:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[22-May-2025 03:50:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[25-May-2025 02:32:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[25-May-2025 04:07:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[27-May-2025 00:12:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[27-May-2025 17:24:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[30-May-2025 14:46:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[02-Jun-2025 15:49:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[04-Jun-2025 05:43:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[04-Jun-2025 09:37:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[06-Jun-2025 07:50:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[09-Jun-2025 08:52:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[11-Jun-2025 10:12:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[11-Jun-2025 10:24:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[11-Jun-2025 11:30:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[11-Jun-2025 11:36:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[11-Jun-2025 11:48:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[11-Jun-2025 13:21:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[11-Jun-2025 13:55:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[11-Jun-2025 17:24:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[11-Jun-2025 18:17:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[14-Jun-2025 16:53:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[15-Jun-2025 01:51:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[15-Jun-2025 03:00:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[15-Jun-2025 03:27:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[15-Jun-2025 03:58:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[15-Jun-2025 04:36:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[15-Jun-2025 05:04:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[06-Jul-2025 03:16:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[07-Jul-2025 03:07:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[07-Jul-2025 03:33:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[09-Jul-2025 03:25:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[09-Jul-2025 03:26:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[09-Jul-2025 17:50:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[09-Jul-2025 20:07:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[09-Jul-2025 22:12:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[10-Jul-2025 01:38:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[10-Jul-2025 01:59:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[10-Jul-2025 04:33:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[10-Jul-2025 04:53:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[10-Jul-2025 05:56:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[11-Jul-2025 03:59:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[14-Jul-2025 05:22:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[15-Jul-2025 11:33:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[15-Jul-2025 12:35:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[15-Jul-2025 12:44:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[15-Jul-2025 16:10:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[15-Jul-2025 16:58:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[15-Jul-2025 20:11:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[16-Jul-2025 11:49:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[16-Jul-2025 11:50:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[23-Jul-2025 06:53:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[25-Jul-2025 21:10:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[26-Jul-2025 06:55:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[26-Jul-2025 09:05:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[26-Jul-2025 09:15:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[26-Jul-2025 10:54:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[26-Jul-2025 13:13:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[26-Jul-2025 14:32:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[26-Jul-2025 15:22:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[26-Jul-2025 21:37:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[27-Jul-2025 05:54:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[27-Jul-2025 07:33:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[27-Jul-2025 10:02:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[27-Jul-2025 10:22:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[27-Jul-2025 11:02:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[27-Jul-2025 14:20:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[02-Aug-2025 16:53:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[07-Aug-2025 06:34:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[07-Aug-2025 08:25:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[07-Aug-2025 08:26:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[07-Aug-2025 08:59:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[07-Aug-2025 09:38:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[07-Aug-2025 11:57:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[12-Aug-2025 21:48:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[12-Aug-2025 21:50:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[13-Aug-2025 00:13:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[13-Aug-2025 00:21:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[15-Aug-2025 08:51:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[16-Aug-2025 08:18:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[16-Aug-2025 08:42:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[16-Aug-2025 11:26:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[22-Aug-2025 15:19:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[25-Aug-2025 20:33:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[25-Aug-2025 22:59:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[26-Aug-2025 13:40:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[26-Aug-2025 20:06:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[27-Aug-2025 18:12:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[29-Aug-2025 01:45:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[29-Aug-2025 01:45:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[29-Aug-2025 01:46:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[29-Aug-2025 01:46:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[29-Aug-2025 03:58:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[29-Aug-2025 17:45:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[29-Aug-2025 17:47:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[29-Aug-2025 17:49:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[29-Aug-2025 17:50:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[29-Aug-2025 17:51:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[29-Aug-2025 17:52:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[29-Aug-2025 17:54:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[31-Aug-2025 03:28:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[01-Sep-2025 15:15:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[03-Sep-2025 15:16:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[05-Sep-2025 06:41:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[13-Sep-2025 14:44:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[13-Sep-2025 19:03:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[14-Sep-2025 07:27:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[14-Sep-2025 07:49:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[14-Sep-2025 08:10:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[14-Sep-2025 08:26:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[16-Sep-2025 01:50:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[16-Sep-2025 02:46:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[16-Sep-2025 02:53:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[16-Sep-2025 14:27:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[16-Sep-2025 16:21:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[16-Sep-2025 16:38:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[16-Sep-2025 16:39:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[16-Sep-2025 16:41:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[16-Sep-2025 16:46:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[16-Sep-2025 16:52:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[17-Sep-2025 04:11:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[17-Sep-2025 04:16:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[17-Sep-2025 04:20:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[17-Sep-2025 04:23:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[17-Sep-2025 04:25:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[17-Sep-2025 04:29:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[17-Sep-2025 04:34:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[17-Sep-2025 12:52:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[18-Sep-2025 13:41:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[18-Sep-2025 13:47:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[18-Sep-2025 13:57:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[18-Sep-2025 14:52:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[18-Sep-2025 15:03:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[19-Sep-2025 03:17:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[19-Sep-2025 05:06:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[19-Sep-2025 05:18:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[19-Sep-2025 08:32:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[19-Sep-2025 09:07:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[19-Sep-2025 10:26:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[19-Sep-2025 10:41:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[19-Sep-2025 10:52:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[19-Sep-2025 13:04:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[19-Sep-2025 13:38:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[19-Sep-2025 14:52:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[19-Sep-2025 15:49:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[20-Sep-2025 11:06:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[20-Sep-2025 11:10:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[20-Sep-2025 11:14:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[21-Sep-2025 09:15:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[21-Sep-2025 09:15:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[21-Sep-2025 09:15:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[21-Sep-2025 09:15:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[21-Sep-2025 09:15:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[21-Sep-2025 09:15:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[02-Oct-2025 17:23:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[24-Oct-2025 00:23:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[24-Oct-2025 02:17:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[24-Oct-2025 02:45:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[24-Oct-2025 03:50:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[24-Oct-2025 04:29:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[24-Oct-2025 05:36:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[24-Oct-2025 05:56:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[24-Oct-2025 07:54:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[24-Oct-2025 09:14:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[24-Oct-2025 09:15:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[24-Oct-2025 09:20:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[24-Oct-2025 09:24:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[24-Oct-2025 11:05:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[24-Oct-2025 12:19:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[23-Nov-2025 21:52:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[23-Nov-2025 22:03:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[23-Nov-2025 23:06:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[23-Nov-2025 23:20:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[24-Nov-2025 00:59:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[24-Nov-2025 01:06:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[24-Nov-2025 02:41:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[24-Nov-2025 02:52:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[24-Nov-2025 04:44:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[24-Nov-2025 05:23:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[24-Nov-2025 06:14:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[24-Nov-2025 06:17:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[24-Nov-2025 06:28:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[24-Nov-2025 06:32:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[25-Dec-2025 21:00:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[25-Dec-2025 21:54:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[26-Dec-2025 02:12:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[08-Jan-2026 07:33:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[09-Jan-2026 09:23:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[09-Jan-2026 13:32:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[11-Jan-2026 08:21:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[11-Jan-2026 08:21:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[11-Jan-2026 08:21:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[11-Jan-2026 15:50:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[11-Jan-2026 15:51:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[11-Jan-2026 15:51:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[11-Jan-2026 23:45:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[11-Jan-2026 23:45:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[12-Jan-2026 01:51:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[12-Jan-2026 01:52:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[13-Jan-2026 04:45:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[13-Jan-2026 04:45:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[13-Jan-2026 08:37:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[13-Jan-2026 08:37:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[13-Jan-2026 08:37:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[14-Jan-2026 06:57:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[18-Jan-2026 21:53:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[18-Jan-2026 22:14:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[18-Jan-2026 23:00:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[18-Jan-2026 23:10:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[18-Jan-2026 23:19:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[18-Jan-2026 23:28:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[18-Jan-2026 23:37:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[18-Jan-2026 23:56:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[19-Jan-2026 04:02:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[19-Jan-2026 05:03:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[19-Jan-2026 05:20:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[19-Jan-2026 05:38:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[19-Jan-2026 05:58:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[19-Jan-2026 06:38:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[25-Jan-2026 20:32:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[27-Jan-2026 08:41:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[27-Jan-2026 10:30:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[27-Jan-2026 10:58:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[27-Jan-2026 12:26:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[27-Jan-2026 12:50:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[27-Jan-2026 13:24:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[27-Jan-2026 14:51:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[27-Jan-2026 14:53:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[27-Jan-2026 16:51:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[27-Jan-2026 18:44:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[27-Jan-2026 19:02:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[27-Jan-2026 19:17:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[30-Jan-2026 15:41:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[30-Jan-2026 18:49:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[23-Feb-2026 00:29:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[23-Feb-2026 00:29:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[23-Feb-2026 19:10:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[23-Feb-2026 19:10:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[23-Feb-2026 19:10:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[24-Feb-2026 15:52:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[01-Mar-2026 03:41:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[01-Mar-2026 04:45:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[01-Mar-2026 06:51:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[01-Mar-2026 10:21:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[01-Mar-2026 14:47:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[01-Mar-2026 15:19:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[04-Mar-2026 08:15:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[04-Mar-2026 14:15:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[04-Mar-2026 14:31:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[04-Mar-2026 21:49:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[08-Mar-2026 03:14:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[08-Mar-2026 03:49:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[08-Mar-2026 04:25:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[08-Mar-2026 07:24:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[12-Mar-2026 01:12:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[12-Mar-2026 08:56:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[15-Mar-2026 23:46:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[17-Mar-2026 15:38:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[18-Mar-2026 23:21:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[19-Mar-2026 14:24:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[20-Mar-2026 00:46:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[20-Mar-2026 07:12:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[24-Mar-2026 13:09:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[24-Mar-2026 15:18:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[25-Mar-2026 00:09:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[25-Mar-2026 06:31:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[25-Mar-2026 12:16:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[25-Mar-2026 13:43:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[25-Mar-2026 18:07:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[25-Mar-2026 20:42:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[26-Mar-2026 03:08:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[26-Mar-2026 03:08:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[26-Mar-2026 17:45:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[27-Mar-2026 06:57:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[27-Mar-2026 22:19:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[27-Mar-2026 23:02:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[28-Mar-2026 01:11:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[28-Mar-2026 11:15:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[28-Mar-2026 12:28:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[31-Mar-2026 18:16:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[02-Apr-2026 18:44:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[03-Apr-2026 12:45:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[03-Apr-2026 13:30:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[03-Apr-2026 17:19:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[05-Apr-2026 15:21:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[05-Apr-2026 15:47:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[05-Apr-2026 16:53:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[05-Apr-2026 18:11:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[05-Apr-2026 20:49:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[05-Apr-2026 23:41:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[06-Apr-2026 03:11:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[06-Apr-2026 08:06:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[06-Apr-2026 08:06:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[06-Apr-2026 08:06:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[07-Apr-2026 22:45:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[07-Apr-2026 22:46:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[08-Apr-2026 00:54:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[10-Apr-2026 07:24:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[10-Apr-2026 07:24:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[10-Apr-2026 09:25:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[10-Apr-2026 09:25:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[10-Apr-2026 09:25:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[11-Apr-2026 16:22:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php on line 7 +[13-Apr-2026 01:04:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[13-Apr-2026 01:04:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[13-Apr-2026 01:04:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[13-Apr-2026 12:25:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php on line 7 +[13-Apr-2026 14:57:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[13-Apr-2026 14:57:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[13-Apr-2026 14:57:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[15-Apr-2026 10:46:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[24-Apr-2026 13:45:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[24-Apr-2026 19:35:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[24-Apr-2026 19:35:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[24-Apr-2026 19:35:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php on line 7 +[30-Apr-2026 00:03:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php on line 7 +[30-Apr-2026 05:00:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 +[30-Apr-2026 10:00:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000001_create_cache_table.php on line 7 +[06-May-2026 01:23:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php on line 7 +[06-May-2026 08:50:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php on line 7 +[06-May-2026 11:54:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php on line 7 +[06-May-2026 13:19:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php on line 7 +[06-May-2026 15:09:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php on line 7 +[06-May-2026 15:29:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_06_01_051819_create_result_table.php on line 7 +[09-May-2026 03:06:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php on line 7 +[09-May-2026 08:37:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/0001_01_01_000000_create_users_table.php on line 7 +[09-May-2026 23:12:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Database\Migrations\Migration" not found in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php on line 7 diff --git a/database/seeders/ConsultationSeeder.php b/database/seeders/ConsultationSeeder.php new file mode 100644 index 0000000..196dfa1 --- /dev/null +++ b/database/seeders/ConsultationSeeder.php @@ -0,0 +1,17 @@ +count(15)->create(); + } +} \ No newline at end of file diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..5e8214a --- /dev/null +++ b/database/seeders/DatabaseSeeder.php @@ -0,0 +1,33 @@ +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, + ]); + } +} diff --git a/database/seeders/UserSeeder.php b/database/seeders/UserSeeder.php new file mode 100644 index 0000000..2b3e247 --- /dev/null +++ b/database/seeders/UserSeeder.php @@ -0,0 +1,19 @@ +count(10)->create(); + } +} diff --git a/database/seeders/error_log b/database/seeders/error_log new file mode 100644 index 0000000..6861578 --- /dev/null +++ b/database/seeders/error_log @@ -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 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..dcf8b76 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,51 @@ +services: + nginx: + image: nginx:1.25-alpine + ports: + - "80" + volumes: + - ./docker-nginx.conf:/etc/nginx/conf.d/default.conf:ro + - app-public:/var/www/html/public:ro + - app-storage:/var/www/html/storage:ro + depends_on: + app: + condition: service_started + labels: + - "traefik.enable=true" + - "traefik.http.routers.aigo.rule=Host(`yourdomain.com`)" + - "traefik.http.services.aigo.loadbalancer.server.port=80" + + app: + build: + context: . + volumes: + - app-public:/var/www/html/public + - app-storage:/var/www/html/storage + environment: + DB_HOST: mysql + DB_DATABASE: ${DB_DATABASE:-aigo} + DB_USERNAME: ${DB_USERNAME:-aigo} + DB_PASSWORD: ${DB_PASSWORD} + depends_on: + mysql: + condition: service_healthy + + mysql: + image: mysql:8.0 + volumes: + - mysql-data:/var/lib/mysql + environment: + MYSQL_DATABASE: ${DB_DATABASE:-aigo} + MYSQL_USER: ${DB_USERNAME:-aigo} + MYSQL_PASSWORD: ${DB_PASSWORD} + MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASSWORD} + healthcheck: + test: ["CMD", "mysqladmin", "ping", "-h", "localhost"] + interval: 5s + timeout: 3s + retries: 10 + +volumes: + app-public: + app-storage: + mysql-data: diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh new file mode 100755 index 0000000..1bbae1d --- /dev/null +++ b/docker-entrypoint.sh @@ -0,0 +1,40 @@ +#!/bin/sh +set -e + +echo "Waiting for MySQL..." +until php -r " +try { + new PDO('mysql:host=mysql;dbname=' . getenv('DB_DATABASE'), getenv('DB_USERNAME'), getenv('DB_PASSWORD')); +} catch(Exception \$e) { + echo \$e->getMessage(); + exit(1); +} +" 2>/dev/null; do + sleep 1 +done +echo "MySQL is ready." + +TABLE_COUNT=$(php -r " +try { + \$pdo = new PDO('mysql:host=mysql;dbname=' . getenv('DB_DATABASE'), getenv('DB_USERNAME'), getenv('DB_PASSWORD')); + \$stmt = \$pdo->query('SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = \\'' . getenv('DB_DATABASE') . '\\''); + echo \$stmt->fetchColumn(); +} catch(Exception \$e) { + echo '0'; +} +") + +if [ "$TABLE_COUNT" = "0" ]; then + echo "Database is empty. Importing humicpro_aigo.sql..." + mysql -h mysql -u "${DB_USERNAME}" -p"${DB_PASSWORD}" "${DB_DATABASE}" < /var/www/html/humicpro_aigo.sql + echo "Import complete." +fi + +echo "Running Laravel setup..." +php artisan storage:link --force +php artisan config:cache +php artisan route:cache +php artisan view:cache + +echo "Starting PHP-FPM..." +exec php-fpm diff --git a/docker-nginx.conf b/docker-nginx.conf new file mode 100644 index 0000000..f1c0102 --- /dev/null +++ b/docker-nginx.conf @@ -0,0 +1,16 @@ +server { + listen 80; + root /var/www/html/public; + index index.php; + client_max_body_size 160M; + + location / { + try_files $uri $uri/ /index.php?$query_string; + } + + location ~ \.php$ { + fastcgi_pass app:9000; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + include fastcgi_params; + } +} diff --git a/humicpro_aigo.sql b/humicpro_aigo.sql new file mode 100644 index 0000000..86f8968 --- /dev/null +++ b/humicpro_aigo.sql @@ -0,0 +1,527 @@ +/*M!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19 Distrib 10.6.25-MariaDB, for Linux (x86_64) +-- +-- Host: localhost Database: humicpro_aigo +-- ------------------------------------------------------ +-- Server version 10.6.25-MariaDB + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `cache` +-- + +DROP TABLE IF EXISTS `cache`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `cache` ( + `key` varchar(255) NOT NULL, + `value` mediumtext NOT NULL, + `expiration` int(11) NOT NULL, + PRIMARY KEY (`key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache` +-- + +LOCK TABLES `cache` WRITE; +/*!40000 ALTER TABLE `cache` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache_locks` +-- + +DROP TABLE IF EXISTS `cache_locks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `cache_locks` ( + `key` varchar(255) NOT NULL, + `owner` varchar(255) NOT NULL, + `expiration` int(11) NOT NULL, + PRIMARY KEY (`key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_locks` +-- + +LOCK TABLES `cache_locks` WRITE; +/*!40000 ALTER TABLE `cache_locks` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_locks` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ch_favorites` +-- + +DROP TABLE IF EXISTS `ch_favorites`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `ch_favorites` ( + `id` char(36) NOT NULL, + `user_id` bigint(20) NOT NULL, + `favorite_id` bigint(20) NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ch_favorites` +-- + +LOCK TABLES `ch_favorites` WRITE; +/*!40000 ALTER TABLE `ch_favorites` DISABLE KEYS */; +/*!40000 ALTER TABLE `ch_favorites` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ch_messages` +-- + +DROP TABLE IF EXISTS `ch_messages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `ch_messages` ( + `id` char(36) NOT NULL, + `from_id` bigint(20) NOT NULL, + `to_id` bigint(20) NOT NULL, + `body` varchar(5000) DEFAULT NULL, + `attachment` varchar(255) DEFAULT NULL, + `seen` tinyint(1) NOT NULL DEFAULT 0, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ch_messages` +-- + +LOCK TABLES `ch_messages` WRITE; +/*!40000 ALTER TABLE `ch_messages` DISABLE KEYS */; +INSERT INTO `ch_messages` (`id`, `from_id`, `to_id`, `body`, `attachment`, `seen`, `created_at`, `updated_at`) VALUES ('0030eb6d-a8aa-4476-b7e5-4881facec0e9',4,20,'hello',NULL,1,'2024-06-07 00:55:46','2024-06-07 00:55:47'),('304bb01c-7336-4427-92d5-684f59cdfbe3',4,20,'can i help u',NULL,1,'2024-06-07 00:55:58','2024-06-07 00:55:59'),('81abe6d9-27cc-4161-a641-5346bfa32119',20,4,'Tes',NULL,1,'2024-06-07 00:55:41','2024-06-07 00:55:43'),('98df24f4-e527-4f8b-8032-7f21cb513838',1,7,'s',NULL,1,'2024-06-04 10:26:36','2024-06-04 10:26:36'),('a57487f6-d3bc-4f2e-ac9f-48affa0c0a3d',20,4,'Yes',NULL,1,'2024-06-07 00:56:09','2024-06-07 00:56:12'); +/*!40000 ALTER TABLE `ch_messages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `consultations` +-- + +DROP TABLE IF EXISTS `consultations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `consultations` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `patient_id` bigint(20) unsigned NOT NULL, + `doctor_id` bigint(20) unsigned NOT NULL, + `consultation_date` date NOT NULL, + `consultation_time` time NOT NULL, + `location` varchar(255) NOT NULL, + `consultation_status` varchar(255) NOT NULL DEFAULT 'pending', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `consultations_patient_id_foreign` (`patient_id`), + KEY `consultations_doctor_id_foreign` (`doctor_id`), + CONSTRAINT `consultations_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + CONSTRAINT `consultations_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `users` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `consultations` +-- + +LOCK TABLES `consultations` WRITE; +/*!40000 ALTER TABLE `consultations` DISABLE KEYS */; +INSERT INTO `consultations` (`id`, `patient_id`, `doctor_id`, `consultation_date`, `consultation_time`, `location`, `consultation_status`, `created_at`, `updated_at`) VALUES (1,5,4,'2023-12-02','07:20:00','South Myrnastad','pending','2024-06-01 05:55:29','2024-06-01 05:55:29'),(2,2,4,'2024-05-28','20:17:20','North Alisaport','finished','2024-06-01 05:55:29','2024-06-04 05:07:15'),(3,2,4,'2024-01-23','15:10:39','North Berthaport','pending','2024-06-01 05:55:29','2024-06-01 05:55:29'),(4,5,7,'2025-03-05','07:30:16','North Braxtonburgh','approved','2024-06-01 05:55:29','2024-06-01 05:55:29'),(5,6,7,'2024-08-15','03:53:19','North Cordellland','cancelled','2024-06-01 05:55:29','2024-06-01 05:55:29'),(6,2,4,'2024-06-20','08:38:42','New Fatima','cancelled','2024-06-01 05:55:29','2024-06-01 05:55:29'),(8,5,4,'2024-10-21','16:40:17','Gaylordmouth','approved','2024-06-01 05:55:29','2024-06-01 05:55:29'),(9,3,7,'2024-06-19','15:38:25','Legrosshire','approved','2024-06-01 05:55:29','2024-06-01 05:55:29'),(10,2,4,'2024-08-12','20:02:18','New Josianne','cancelled','2024-06-01 05:55:29','2024-06-01 05:55:29'),(11,6,4,'2024-05-09','10:17:05','Gleichnerside','cancelled','2024-06-01 05:55:29','2024-06-01 05:55:29'),(12,3,4,'2024-03-09','04:54:36','Boyerberg','cancelled','2024-06-01 05:55:29','2024-06-01 05:55:29'),(13,5,7,'2025-03-17','01:11:16','Newellborough','pending','2024-06-01 05:55:29','2024-06-01 05:55:29'),(15,6,4,'2024-10-17','02:39:37','Rohanmouth','pending','2024-06-01 05:55:29','2024-06-01 05:55:29'),(16,6,10,'2024-03-22','12:21:26','South Lempi','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(18,6,4,'2024-10-12','21:01:45','New Wiley','finished','2024-06-01 05:55:31','2024-06-04 05:08:18'),(19,9,4,'2025-04-06','21:42:37','Kayleighville','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(20,5,4,'2024-03-05','04:10:51','Stewartland','declined','2024-06-01 05:55:31','2024-06-03 06:45:38'),(21,9,4,'2025-02-04','05:01:57','North Enolaton','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(22,5,4,'2024-02-26','20:47:08','West Juanitamouth','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(23,8,4,'2024-06-27','18:16:37','West Stephanshire','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(24,9,7,'2023-10-04','04:26:16','Jedidiahtown','cancelled','2024-06-01 05:55:31','2024-06-01 05:55:31'),(25,5,10,'2023-12-28','16:52:05','Spencerbury','approved','2024-06-01 05:55:31','2024-06-01 05:55:31'),(27,6,7,'2025-03-25','04:25:08','Dominicberg','cancelled','2024-06-01 05:55:31','2024-06-01 05:55:31'),(28,6,7,'2024-10-06','18:15:56','Lake Spencerhaven','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(29,3,10,'2024-10-22','05:24:22','Emeliahaven','approved','2024-06-01 05:55:31','2024-06-01 05:55:31'),(30,8,10,'2023-07-24','23:52:26','South Darwinborough','approved','2024-06-01 05:55:31','2024-06-01 05:55:31'),(31,2,13,'2023-11-24','14:54:54','South Markus','cancelled','2024-06-01 05:55:32','2024-06-01 05:55:32'),(32,3,10,'2024-02-24','01:50:33','Lake Monabury','approved','2024-06-01 05:55:32','2024-06-01 05:55:32'),(33,5,7,'2024-01-22','23:49:45','Swaniawskiside','approved','2024-06-01 05:55:32','2024-06-01 05:55:32'),(36,9,13,'2024-09-29','13:41:49','West Gabeburgh','pending','2024-06-01 05:55:32','2024-06-01 05:55:32'),(37,6,10,'2023-12-31','09:43:48','Elmoreburgh','approved','2024-06-01 05:55:32','2024-06-01 05:55:32'),(38,12,10,'2023-10-09','04:01:42','Port Margretfurt','cancelled','2024-06-01 05:55:32','2024-06-01 05:55:32'),(39,8,10,'2025-01-11','12:15:25','Sigurdshire','cancelled','2024-06-01 05:55:32','2024-06-01 05:55:32'),(41,5,4,'2024-05-23','11:52:48','McKenziemouth','cancelled','2024-06-01 05:55:32','2024-06-01 05:55:32'),(42,8,10,'2024-03-25','23:30:29','North Murphyhaven','cancelled','2024-06-01 05:55:32','2024-06-01 05:55:32'),(43,8,10,'2023-07-19','10:46:58','Kunzeside','approved','2024-06-01 05:55:32','2024-06-01 05:55:32'),(44,6,4,'2024-12-10','14:30:52','Beulahmouth','approved','2024-06-01 05:55:32','2024-06-01 05:55:32'),(49,1,4,'2024-06-12','21:41:00','Bandung','finished','2024-06-01 06:21:09','2024-06-01 06:21:56'),(50,1,4,'2024-06-12','14:33:00','Online','finished','2024-06-01 06:21:20','2024-06-01 06:22:37'),(51,1,4,'2024-06-26','03:12:00','Online','declined','2024-06-03 10:42:33','2024-06-07 00:53:55'),(52,1,7,'2024-06-12','12:41:00','RS. Kencana','finished','2024-06-04 10:24:36','2024-06-04 10:25:18'),(53,1,7,'2024-06-13','12:14:00','Online','approved','2024-06-04 10:25:51','2024-06-04 10:25:58'),(54,20,7,'2024-06-07','15:52:00','gghh','pending','2024-06-07 00:52:20','2024-06-07 00:52:20'),(55,1,4,'2024-06-19','12:49:00','Online','declined','2024-06-07 00:54:09','2024-06-07 00:54:31'),(56,20,4,'2024-06-07','14:54:00','jjj','approved','2024-06-07 00:54:42','2024-06-07 00:54:58'),(57,17,4,'2024-06-12','18:52:00','padang','approved','2024-06-11 04:50:17','2024-06-22 03:41:36'),(58,16,7,'2024-06-18','17:20:00','Online','pending','2024-06-14 00:20:57','2024-06-14 00:20:57'),(59,23,7,'2024-06-22','06:00:00','Bandung','pending','2024-06-22 00:58:18','2024-06-22 00:58:18'),(60,25,4,'2024-08-29','20:20:00','Bandung','pending','2024-08-29 06:20:52','2024-08-29 06:20:52'),(61,25,4,'2024-08-29','20:32:00','Bandung','pending','2024-08-29 06:32:47','2024-08-29 06:32:47'),(62,26,7,'2024-09-26','02:03:00','indonesia','pending','2024-09-26 19:18:33','2024-09-26 19:18:33'),(63,24,4,'2024-10-22','19:35:00','Telkom','pending','2024-10-09 05:35:37','2024-10-09 05:35:37'),(64,24,4,'2024-10-10','18:00:00','Telkom','pending','2024-10-10 03:08:34','2024-10-10 03:08:34'),(65,24,4,'2024-10-10','17:17:00','Telkom','pending','2024-10-10 03:17:20','2024-10-10 03:17:20'),(66,24,4,'2024-10-10','17:17:00','Telkom','pending','2024-10-10 03:17:48','2024-10-10 03:17:48'),(67,24,7,'2024-10-10','17:23:00','Telkom','pending','2024-10-10 03:23:57','2024-10-10 03:23:57'),(68,24,7,'2024-10-10','17:23:00','Telkom','pending','2024-10-10 03:24:39','2024-10-10 03:24:39'),(69,24,7,'2024-10-10','17:25:00','Telkom','pending','2024-10-10 03:26:19','2024-10-10 03:26:19'),(70,29,4,'2024-10-10','17:37:00','Telkom','pending','2024-10-10 03:38:05','2024-10-10 03:38:05'),(71,24,4,'2024-10-10','17:41:00','Telkom','pending','2024-10-10 03:41:07','2024-10-10 03:41:07'),(72,28,4,'2024-10-11','18:58:00','online','pending','2024-10-10 13:58:36','2024-10-10 13:58:36'),(73,28,13,'2024-10-11','08:46:00','online','pending','2024-10-10 15:43:32','2024-10-10 15:43:32'),(74,32,4,'2025-04-17','17:22:00','bdg','pending','2025-04-11 02:22:24','2025-04-11 02:22:24'); +/*!40000 ALTER TABLE `consultations` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `failed_jobs` +-- + +DROP TABLE IF EXISTS `failed_jobs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `failed_jobs` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `uuid` varchar(255) NOT NULL, + `connection` text NOT NULL, + `queue` text NOT NULL, + `payload` longtext NOT NULL, + `exception` longtext NOT NULL, + `failed_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`id`), + UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `failed_jobs` +-- + +LOCK TABLES `failed_jobs` WRITE; +/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */; +/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `health_datas` +-- + +DROP TABLE IF EXISTS `health_datas`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `health_datas` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `users_id` bigint(20) unsigned NOT NULL, + `birthdate` date NOT NULL, + `weight` double NOT NULL, + `height` double NOT NULL, + `sleeptime` int(11) NOT NULL, + `disease` varchar(255) NOT NULL, + `food` varchar(255) NOT NULL, + `alergi_makanan` varchar(255) NOT NULL, + `obesity_status` varchar(255) DEFAULT NULL, + `calorie_recommendation` int(11) DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `health_datas_users_id_foreign` (`users_id`), + CONSTRAINT `health_datas_users_id_foreign` FOREIGN KEY (`users_id`) REFERENCES `users` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `health_datas` +-- + +LOCK TABLES `health_datas` WRITE; +/*!40000 ALTER TABLE `health_datas` DISABLE KEYS */; +INSERT INTO `health_datas` (`id`, `users_id`, `birthdate`, `weight`, `height`, `sleeptime`, `disease`, `food`, `alergi_makanan`, `obesity_status`, `calorie_recommendation`, `created_at`, `updated_at`) VALUES (1,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-01 05:53:56','2024-06-01 05:56:15'),(2,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-01 06:11:48','2024-06-01 06:11:57'),(3,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-01 06:12:01','2024-06-01 06:12:07'),(4,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-01 06:21:03','2024-06-01 06:21:10'),(5,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-01 06:21:14','2024-06-01 06:21:20'),(6,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-03 10:42:24','2024-06-03 10:42:34'),(7,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-04 10:24:19','2024-06-04 10:24:36'),(8,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-04 10:25:42','2024-06-04 10:25:51'),(9,15,'2020-10-27',60,180,8,'Flu','Burger','-','Normal weight',1887,'2024-06-06 01:04:42','2024-06-06 01:07:56'),(10,20,'1993-09-02',73,170,4,'-','makan malam','-','Overweight',1880,'2024-06-07 00:51:23','2024-06-07 00:52:23'),(11,20,'1993-09-02',73,170,4,'-','makan malam','-',NULL,NULL,'2024-06-07 00:53:42','2024-06-07 00:53:42'),(12,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-07 00:53:51','2024-06-07 00:54:11'),(13,20,'1993-09-02',73,170,4,'-','makan malam','-','Overweight',1880,'2024-06-07 00:53:54','2024-06-07 00:54:44'),(14,1,'2000-02-08',200,170,8,'Flu','Burger','-','Obese',2389,'2024-06-10 23:15:06','2024-06-10 23:15:20'),(15,17,'2004-02-20',65,173,4,'pilek','makan brutal','kacang','Normal weight',1887,'2024-06-11 04:49:49','2024-06-11 04:50:18'),(16,17,'2004-02-20',65,173,4,'pilek','makan brutal','kacang','Normal weight',1887,'2024-06-11 05:25:15','2024-06-12 07:19:47'),(17,16,'2003-05-19',52,165,6,'-','kurang teratur','-','Normal weight',1758,'2024-06-14 00:20:38','2024-06-14 00:20:58'),(18,1,'2000-02-08',200,170,8,'Flu','Burger','Flu','Obese',2389,'2024-06-22 00:06:33','2024-06-22 01:11:58'),(19,17,'2004-02-20',65,173,4,'pilek','makan brutal','kacang','Normal weight',1887,'2024-06-22 00:52:06','2024-06-22 01:01:19'),(20,23,'1890-07-01',70,170,8,'Flu','Nasi','Flu','Normal weight',1364,'2024-06-22 00:57:53','2024-06-22 00:58:19'),(21,23,'1890-07-01',70,170,8,'Flu','Nasi','Flu','Normal weight',1364,'2024-06-22 01:12:43','2024-06-22 01:19:50'),(22,23,'1890-07-01',70,170,8,'Flu','Nasi','Flu',NULL,NULL,'2024-06-22 03:41:46','2024-06-22 03:41:46'),(23,25,'2007-06-28',80,180,8,'Sakit Perut','Nasi Goreng','Udang',NULL,NULL,'2024-08-29 06:19:08','2024-08-29 06:19:08'),(24,25,'2007-06-28',80,180,8,'Sakit Perut','Nasi Goreng','Udang','Normal weight',1880,'2024-08-29 06:19:17','2024-08-29 06:32:28'),(25,25,'2007-06-28',80,180,8,'Sakit Perut','Nasi Goreng','Udang','Normal weight',1880,'2024-08-29 06:32:36','2024-08-29 06:32:47'),(26,26,'2003-09-27',75,170,5,'-','Ayam Goreng','-','Overweight',1880,'2024-09-26 19:17:08','2024-09-26 19:18:35'),(27,24,'1997-06-03',100,170,8,'Tidak Ada','Tidak Ada','Tidak Ada','Obese',2238,'2024-10-09 05:35:19','2024-10-09 05:35:42'),(28,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:08:20','2024-10-10 03:08:35'),(29,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:16:50','2024-10-10 03:17:20'),(30,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:17:30','2024-10-10 03:17:49'),(31,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada',NULL,NULL,'2024-10-10 03:19:36','2024-10-10 03:19:36'),(32,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:23:46','2024-10-10 03:24:40'),(33,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:25:48','2024-10-10 03:26:20'),(34,29,'1990-07-11',70,180,6,'Tidak','Tidak','Tidak','Normal weight',1806,'2024-10-10 03:37:48','2024-10-10 03:38:06'),(35,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:40:54','2024-10-10 03:41:08'),(36,29,'1990-07-11',70,180,6,'Tidak','Tidak','Tidak','Normal weight',1806,'2024-10-10 03:46:23','2024-10-10 03:46:58'),(37,28,'2001-02-16',69,165,5,'Asma','ayam','Udang',NULL,NULL,'2024-10-10 13:57:34','2024-10-10 13:57:34'),(38,28,'2001-02-16',69,165,5,'Asma','ayam','Udang','Overweight',1880,'2024-10-10 15:33:11','2024-10-26 20:44:58'),(39,32,'2025-04-02',12,12,2,'flu','flu','flu','Obese',1695,'2025-04-11 02:22:07','2025-04-11 02:22:27'); +/*!40000 ALTER TABLE `health_datas` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `job_batches` +-- + +DROP TABLE IF EXISTS `job_batches`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `job_batches` ( + `id` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `total_jobs` int(11) NOT NULL, + `pending_jobs` int(11) NOT NULL, + `failed_jobs` int(11) NOT NULL, + `failed_job_ids` longtext NOT NULL, + `options` mediumtext DEFAULT NULL, + `cancelled_at` int(11) DEFAULT NULL, + `created_at` int(11) NOT NULL, + `finished_at` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `job_batches` +-- + +LOCK TABLES `job_batches` WRITE; +/*!40000 ALTER TABLE `job_batches` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_batches` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jobs` +-- + +DROP TABLE IF EXISTS `jobs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `jobs` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `queue` varchar(255) NOT NULL, + `payload` longtext NOT NULL, + `attempts` tinyint(3) unsigned NOT NULL, + `reserved_at` int(10) unsigned DEFAULT NULL, + `available_at` int(10) unsigned NOT NULL, + `created_at` int(10) unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `jobs_queue_index` (`queue`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jobs` +-- + +LOCK TABLES `jobs` WRITE; +/*!40000 ALTER TABLE `jobs` DISABLE KEYS */; +/*!40000 ALTER TABLE `jobs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `migrations` +-- + +DROP TABLE IF EXISTS `migrations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `migrations` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `migration` varchar(255) NOT NULL, + `batch` int(11) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `migrations` +-- + +LOCK TABLES `migrations` WRITE; +/*!40000 ALTER TABLE `migrations` DISABLE KEYS */; +INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1,'0001_01_01_000000_create_users_table',1),(2,'0001_01_01_000001_create_cache_table',1),(3,'0001_01_01_000002_create_jobs_table',1),(4,'2024_04_05_111159_create_health_datas_table',1),(5,'2024_04_09_053948_create_physical_activities_table',1),(6,'2024_04_29_999999_add_active_status_to_users',1),(7,'2024_04_29_999999_add_avatar_to_users',1),(8,'2024_04_29_999999_add_dark_mode_to_users',1),(9,'2024_04_29_999999_add_messenger_color_to_users',1),(10,'2024_04_29_999999_create_chatify_favorites_table',1),(11,'2024_04_29_999999_create_chatify_messages_table',1),(12,'2024_05_01_125310_create_consultations_table',1),(13,'2024_05_24_175930_create_notifications_table',1),(14,'2024_06_01_051819_create_result_table',1); +/*!40000 ALTER TABLE `migrations` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `notifications` +-- + +DROP TABLE IF EXISTS `notifications`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `notifications` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_id` bigint(20) unsigned NOT NULL, + `consultation_id` bigint(20) unsigned NOT NULL, + `message` varchar(255) NOT NULL, + `is_read` tinyint(1) NOT NULL DEFAULT 0, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `notifications_user_id_foreign` (`user_id`), + KEY `notifications_consultation_id_foreign` (`consultation_id`), + CONSTRAINT `notifications_consultation_id_foreign` FOREIGN KEY (`consultation_id`) REFERENCES `consultations` (`id`) ON DELETE CASCADE, + CONSTRAINT `notifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `notifications` +-- + +LOCK TABLES `notifications` WRITE; +/*!40000 ALTER TABLE `notifications` DISABLE KEYS */; +INSERT INTO `notifications` (`id`, `user_id`, `consultation_id`, `message`, `is_read`, `created_at`, `updated_at`) VALUES (9,1,49,'Your consultation request has been approved by Dr. Brook Jerde MD.',0,'2024-06-01 06:21:27','2024-06-01 06:21:27'),(10,4,49,'You have approved the consultation request from Wzrd.',0,'2024-06-01 06:21:27','2024-06-01 06:21:27'),(11,1,50,'Your consultation request has been approved by Dr. Brook Jerde MD.',0,'2024-06-01 06:22:12','2024-06-01 06:22:12'),(12,4,50,'You have approved the consultation request from Wzrd.',0,'2024-06-01 06:22:12','2024-06-01 06:22:12'),(13,5,20,'Your consultation request has been declined by Dr. Brook Jerde MD.',0,'2024-06-03 06:45:38','2024-06-03 06:45:38'),(14,4,20,'You have declined the consultation request from Dr. Savanna Pollich.',0,'2024-06-03 06:45:38','2024-06-03 06:45:38'),(15,1,52,'Your consultation request has been approved by Dr. Dr. Thomas Huel DDS.',0,'2024-06-04 10:24:51','2024-06-04 10:24:51'),(16,7,52,'You have approved the consultation request from Wzrd.',0,'2024-06-04 10:24:51','2024-06-04 10:24:51'),(17,1,53,'Your consultation request has been approved by Dr. Dr. Thomas Huel DDS.',0,'2024-06-04 10:25:58','2024-06-04 10:25:58'),(18,7,53,'You have approved the consultation request from Wzrd.',0,'2024-06-04 10:25:58','2024-06-04 10:25:58'),(19,1,51,'Your consultation request has been declined by Dr. Brook Jerde MD.',0,'2024-06-07 00:53:56','2024-06-07 00:53:56'),(20,4,51,'You have declined the consultation request from Wzrd.',0,'2024-06-07 00:53:56','2024-06-07 00:53:56'),(21,1,55,'Your consultation request has been declined by Dr. Brook Jerde MD.',0,'2024-06-07 00:54:36','2024-06-07 00:54:36'),(22,4,55,'You have declined the consultation request from Wzrd.',0,'2024-06-07 00:54:36','2024-06-07 00:54:36'),(23,20,56,'Your consultation request has been approved by Dr. Brook Jerde MD.',0,'2024-06-07 00:54:58','2024-06-07 00:54:58'),(24,4,56,'You have approved the consultation request from satria.',0,'2024-06-07 00:54:58','2024-06-07 00:54:58'),(25,17,57,'Your consultation request has been approved by Dr. Brook Jerde MD.',0,'2024-06-22 03:41:36','2024-06-22 03:41:36'),(26,4,57,'You have approved the consultation request from wili.',0,'2024-06-22 03:41:36','2024-06-22 03:41:36'); +/*!40000 ALTER TABLE `notifications` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `password_reset_tokens` +-- + +DROP TABLE IF EXISTS `password_reset_tokens`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `password_reset_tokens` ( + `email` varchar(255) NOT NULL, + `token` varchar(255) NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`email`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `password_reset_tokens` +-- + +LOCK TABLES `password_reset_tokens` WRITE; +/*!40000 ALTER TABLE `password_reset_tokens` DISABLE KEYS */; +/*!40000 ALTER TABLE `password_reset_tokens` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `physical_activities` +-- + +DROP TABLE IF EXISTS `physical_activities`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `physical_activities` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `users_id` bigint(20) unsigned NOT NULL, + `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `type` varchar(255) NOT NULL, + `distance` decimal(8,2) NOT NULL, + `duration` int(11) NOT NULL, + `avg_speed` decimal(8,2) NOT NULL, + `avg_steps` int(11) NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `physical_activities_users_id_foreign` (`users_id`), + CONSTRAINT `physical_activities_users_id_foreign` FOREIGN KEY (`users_id`) REFERENCES `users` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=11324074224 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `physical_activities` +-- + +LOCK TABLES `physical_activities` WRITE; +/*!40000 ALTER TABLE `physical_activities` DISABLE KEYS */; +INSERT INTO `physical_activities` (`id`, `users_id`, `date`, `type`, `distance`, `duration`, `avg_speed`, `avg_steps`, `created_at`, `updated_at`) VALUES (7089659599,1,'2022-05-05 00:14:45','Run',1424.50,591,2.41,75,'2024-06-01 05:53:20','2024-06-01 05:53:20'),(7105137840,1,'2022-05-07 23:35:31','Run',139.50,19,7.34,0,'2024-06-01 05:53:20','2024-06-01 05:53:20'),(7105256797,1,'2022-05-07 23:56:03','Run',2286.90,995,2.30,74,'2024-06-01 05:53:20','2024-06-01 05:53:20'),(11324074162,1,'2024-05-03 17:35:28','Run',1011.90,12,84.32,0,'2024-06-01 05:53:20','2024-06-01 05:53:20'),(11324074163,1,'2024-05-03 17:35:28','Run',1011.90,12,84.32,0,'2024-06-06 09:50:11','2024-06-06 09:50:11'),(11324074164,1,'2022-05-07 23:56:03','Run',2286.90,995,2.30,74,'2024-06-06 09:50:11','2024-06-06 09:50:11'),(11324074165,1,'2022-05-07 23:35:31','Run',139.50,19,7.34,0,'2024-06-06 09:50:11','2024-06-06 09:50:11'),(11324074166,1,'2022-05-05 00:14:45','Run',1424.50,591,2.41,75,'2024-06-06 09:50:12','2024-06-06 09:50:12'),(11324074167,1,'2024-05-03 17:35:28','Run',1011.90,12,84.32,0,'2024-06-07 00:35:59','2024-06-07 00:35:59'),(11324074168,1,'2022-05-07 23:56:03','Run',2286.90,995,2.30,74,'2024-06-07 00:36:00','2024-06-07 00:36:00'),(11324074169,1,'2022-05-07 23:35:31','Run',139.50,19,7.34,0,'2024-06-07 00:36:00','2024-06-07 00:36:00'),(11324074170,1,'2022-05-05 00:14:45','Run',1424.50,591,2.41,75,'2024-06-07 00:36:00','2024-06-07 00:36:00'),(11324074171,1,'2024-05-03 17:35:28','Run',1011.90,12,84.32,0,'2024-06-10 23:15:15','2024-06-10 23:15:15'),(11324074172,1,'2022-05-07 23:56:03','Run',2286.90,995,2.30,74,'2024-06-10 23:15:19','2024-06-10 23:15:19'),(11324074173,1,'2022-05-07 23:35:31','Run',139.50,19,7.34,0,'2024-06-10 23:15:20','2024-06-10 23:15:20'),(11324074174,1,'2022-05-05 00:14:45','Run',1424.50,591,2.41,75,'2024-06-10 23:15:21','2024-06-10 23:15:21'),(11324074175,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-11 04:49:08','2024-06-11 04:49:08'),(11324074176,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-11 04:49:08','2024-06-11 04:49:08'),(11324074177,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-11 04:49:08','2024-06-11 04:49:08'),(11324074178,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-11 04:53:12','2024-06-11 04:53:12'),(11324074179,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-11 04:53:12','2024-06-11 04:53:12'),(11324074180,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-11 04:53:12','2024-06-11 04:53:12'),(11324074181,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-11 05:02:14','2024-06-11 05:02:14'),(11324074182,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-11 05:02:14','2024-06-11 05:02:14'),(11324074183,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-11 05:02:14','2024-06-11 05:02:14'),(11324074184,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-12 07:19:44','2024-06-12 07:19:44'),(11324074185,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-12 07:19:44','2024-06-12 07:19:44'),(11324074186,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-12 07:19:44','2024-06-12 07:19:44'),(11324074187,16,'2024-04-28 00:49:25','Walk',2712.30,2403,1.13,0,'2024-06-14 00:19:49','2024-06-14 00:19:49'),(11324074188,16,'2024-04-18 23:36:47','Walk',3374.40,2953,1.14,0,'2024-06-14 00:19:50','2024-06-14 00:19:50'),(11324074189,1,'2024-06-12 10:11:32','Run',523.20,91,5.75,0,'2024-06-15 22:30:24','2024-06-15 22:30:24'),(11324074190,1,'2024-06-12 10:11:32','Run',523.20,91,5.75,0,'2024-06-16 00:21:50','2024-06-16 00:21:50'),(11324074191,1,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-18 01:40:58','2024-06-18 01:40:58'),(11324074192,1,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-18 01:40:59','2024-06-18 01:40:59'),(11324074193,1,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-18 01:40:59','2024-06-18 01:40:59'),(11324074194,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-18 02:31:22','2024-06-18 02:31:22'),(11324074195,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-18 02:31:22','2024-06-18 02:31:22'),(11324074196,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-18 02:31:22','2024-06-18 02:31:22'),(11324074197,1,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-21 11:24:47','2024-06-21 11:24:47'),(11324074198,1,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-21 11:24:47','2024-06-21 11:24:47'),(11324074199,1,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-21 11:24:47','2024-06-21 11:24:47'),(11324074200,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-22 00:00:45','2024-06-22 00:00:45'),(11324074201,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-22 00:00:45','2024-06-22 00:00:45'),(11324074202,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-22 00:00:45','2024-06-22 00:00:45'),(11324074203,1,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-22 00:05:52','2024-06-22 00:05:52'),(11324074204,1,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-22 00:05:52','2024-06-22 00:05:52'),(11324074205,1,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-22 00:05:52','2024-06-22 00:05:52'),(11324074206,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-22 01:20:31','2024-06-22 01:20:31'),(11324074207,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-22 01:20:31','2024-06-22 01:20:31'),(11324074208,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-22 01:20:31','2024-06-22 01:20:31'),(11324074209,1,'2024-06-22 08:22:52','Run',37.90,10,3.79,0,'2024-06-22 01:23:55','2024-06-22 01:23:55'),(11324074210,1,'2024-06-12 10:11:32','Run',523.20,91,5.75,0,'2024-06-22 01:23:55','2024-06-22 01:23:55'),(11324074211,23,'2024-06-22 08:07:59','Walk',44.50,13,3.43,0,'2024-06-22 02:51:07','2024-06-22 02:51:07'),(11324074212,23,'2024-06-22 08:00:39','Walk',79.80,10,7.98,0,'2024-06-22 02:51:07','2024-06-22 02:51:07'),(11324074213,23,'2024-06-22 08:07:59','Walk',44.50,13,3.43,0,'2024-06-22 02:52:49','2024-06-22 02:52:49'),(11324074214,23,'2024-06-22 08:00:39','Walk',79.80,10,7.98,0,'2024-06-22 02:52:49','2024-06-22 02:52:49'),(11324074215,1,'2024-06-22 08:11:45','Walk',25.90,41,0.63,0,'2024-06-27 06:50:05','2024-06-27 06:50:05'),(11324074216,1,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-27 06:50:05','2024-06-27 06:50:05'),(11324074217,1,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-27 06:50:05','2024-06-27 06:50:05'),(11324074218,1,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-27 06:50:05','2024-06-27 06:50:05'),(11324074219,29,'2024-10-10 10:49:13','Run',296.20,144,2.06,65,'2024-10-10 04:00:32','2024-10-10 04:00:32'),(11324074220,29,'2024-10-10 11:02:40','Run',13.30,6,2.22,72,'2024-10-10 04:04:37','2024-10-10 04:04:37'),(11324074221,29,'2024-10-10 10:49:13','Run',296.20,144,2.06,65,'2024-10-10 04:04:37','2024-10-10 04:04:37'),(11324074222,29,'2024-10-10 11:02:40','Run',13.30,6,2.22,72,'2024-10-10 04:05:46','2024-10-10 04:05:46'),(11324074223,29,'2024-10-10 10:49:13','Run',296.20,144,2.06,65,'2024-10-10 04:05:46','2024-10-10 04:05:46'); +/*!40000 ALTER TABLE `physical_activities` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `result` +-- + +DROP TABLE IF EXISTS `result`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `result` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `patient_id` bigint(20) unsigned NOT NULL, + `doctor_id` bigint(20) unsigned NOT NULL, + `consultation_id` bigint(20) unsigned DEFAULT NULL, + `jarak_lari` int(11) NOT NULL, + `sleeptime` double NOT NULL, + `food` varchar(255) NOT NULL, + `unrecommended_food` varchar(255) NOT NULL, + `notes` text NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `result_patient_id_foreign` (`patient_id`), + KEY `result_doctor_id_foreign` (`doctor_id`), + KEY `result_consultation_id_foreign` (`consultation_id`), + CONSTRAINT `result_consultation_id_foreign` FOREIGN KEY (`consultation_id`) REFERENCES `consultations` (`id`) ON DELETE SET NULL, + CONSTRAINT `result_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + CONSTRAINT `result_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `users` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `result` +-- + +LOCK TABLES `result` WRITE; +/*!40000 ALTER TABLE `result` DISABLE KEYS */; +INSERT INTO `result` (`id`, `patient_id`, `doctor_id`, `consultation_id`, `jarak_lari`, `sleeptime`, `food`, `unrecommended_food`, `notes`, `created_at`, `updated_at`) VALUES (4,1,4,49,4124,7,'Sayur','Burger','-','2024-06-01 06:21:56','2024-06-01 06:21:56'),(5,1,4,50,7424,8,'Sayur-sayuran','Bakwan','Mantap!','2024-06-01 06:22:37','2024-06-01 06:22:37'),(6,2,4,2,2134,6,'Sayur-sayuran','Gorengan','Good luck','2024-06-04 05:07:15','2024-06-04 05:07:15'),(7,6,4,18,4133,8,'Susu dan Sereal','Mie','-','2024-06-04 05:08:18','2024-06-04 05:08:18'),(8,1,7,52,4215,8,'Sayur','Burger','Good','2024-06-04 10:25:18','2024-06-04 10:25:18'); +/*!40000 ALTER TABLE `result` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sessions` +-- + +DROP TABLE IF EXISTS `sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `sessions` ( + `id` varchar(255) NOT NULL, + `user_id` bigint(20) unsigned DEFAULT NULL, + `ip_address` varchar(45) DEFAULT NULL, + `user_agent` text DEFAULT NULL, + `payload` longtext NOT NULL, + `last_activity` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `sessions_user_id_index` (`user_id`), + KEY `sessions_last_activity_index` (`last_activity`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sessions` +-- + +LOCK TABLES `sessions` WRITE; +/*!40000 ALTER TABLE `sessions` DISABLE KEYS */; +INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES ('23Fxc3Y4IDMyjsF05ucQixXqrWg3NUs15JLASs0q',NULL,'138.124.159.248','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/85.0.4183.121 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoicnpqdDRmSjA0b0RvNFdJUmc1Zk51RUphcVlNU1M3dEZneVhXV3p1ZyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1776670724),('2wAePq1WQshzy2pW4Cnpc9Tn05DX2r90nVPNZ8qG',NULL,'103.100.234.67','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/89.0.4389.114 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUzEyRkxhWENiY0RUQmVCQ3RQN2ZHamNLUE9ocGxmRWRrY3FUd2plNyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777014655),('3YE58T9aL5f5EuSO2oa0ozlMEHNvlzkcSlflObl2',NULL,'57.129.136.58','python-httpx/0.27.2','YTozOntzOjY6Il90b2tlbiI7czo0MDoiY3BXelVpS3p1ZTRwQlpxdVE3N1NuWXJqMGJVZzBSb1FmUDJTcTRPRCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1778199841),('9FAJvXSppEufY3P4Ql0LOEzP3hiXbGj91972EzU0',NULL,'66.249.66.37','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','YTozOntzOjY6Il90b2tlbiI7czo0MDoia3RKcmxERVFYWXVqSm4yekk5ZXgzaHpHNXRZNzlKWkh1SmFZTktxYiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777638110),('A9CBS9Ot2xNjUvD3PHEPP5Pa2OimImHe44i76B02',NULL,'66.132.195.63','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoialpUZ0dwWmJJM0ZpOE1sMTk5Rnh0RHk2eWJQT0FYbVNRUDNQTWpLYiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778427571),('ac0EM6zyZS8awmPZIfb6c1RNkLzcEW0BFo6evCut',NULL,'167.71.143.240','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiM01jcGJ0ZnBlRVRibVFzV0hVUXcycnhYN1NwTW52OHpvSFdZVUp5YSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777251199),('B4Xx4BtILGhOb03fiGdDM89bjUrhTHTGnzwphBX0',NULL,'104.28.193.25','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiQjJoZ1lMR0dSY0dHTjJWVUFCMkhrZGRNeGhscUZRbnRYVGJpclo2UyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778457928),('bbOtEyvo0RdXxsf7Q0MqRdaMEQe0p57R5MQ7drXP',NULL,'34.193.251.180','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiREFNY2Z5MjZxTm5OZ2N1Y0prZU4wQmlrdUxQOXRVMFZqbzh2aDVhayI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778266426),('BMFNbzxNh5AikPlsZ7MJ3Xb13EH45zJqOiNbjyRL',NULL,'54.38.147.12','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiTmdRdmJVYmJPY0hNYlY5aU5KVDhaek8wQ2tla04xc1lFeWRCcVlGaiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDA6Imh0dHBzOi8vaHVtaWNwcm90b3R5cGluZy5jb20vYWlnby9wdWJsaWMiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777391692),('BvcFOadYlYukiwxWuzJGtmH9YPlXzeBavoa4Mjd7',NULL,'113.180.130.6','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoibWFkMmc0bEJxY3dXdWc0cVZvV3VDY1JuNDB2RjFTOHE0bTFqZFcxOSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777014596),('CAb9O2cEnJpxU3NX2TSivTJdrJMfJzuDOGdk92p0',NULL,'66.132.195.31','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMUczU3VEOFZFUmswa1JvRFVXb05WOGdpcG1GYnlHOXMxVmlWMkdTWSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777087311),('CmrzKWYPOvCiItyUWjh3cJBoDhUsbaLFGfUCnF5x',NULL,'146.190.255.53','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiTk5sVjFWVGkzTnBNWHhwVU5Hd09yWXZPSmtxR2MxNHVJTEJ6Q3IxaSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777364516),('cYiZ0f6jl1DH9H3VRGvmt4xhfynTYNHbaUxWem1G',NULL,'192.121.185.99','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:123.0) Gecko/20100101 Firefox/123','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMDRXNTI0SUlSeVkzSEZhQmxJa2dEQzVDRzMyTkZqTndHZk1WUm1PUSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778253533),('DmGugbvTnbswnf6OCQ57Y4z67Llva5VPckmPsEMQ',NULL,'113.187.166.90','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiSG9JVmFheDNYZFkzcHZTSHdwd0ZCOW84RjFxbnp1S3oyUkpncWEzUyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777273584),('E3rEqmGPXuS3ilqxZ1bVncifE7NfgXrOPTthBfHT',NULL,'34.193.251.180','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoic3NCQm1DZ3FVRVlIT1dUeURyMWJneFprNms0ZEcyN2dUMGx0a1lCcyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778452966),('EDlsDiR0KiF1ATptx9p5fZg4VFMZoSg92pUak0vP',NULL,'136.115.234.236','Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMFg5aEYzanRjRUc0NmtXTUVKNEJFNUlzekE3c0RqYUZPVGh2eFR3WiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777821263),('eLHIZbyNfK8sBBeQZh6Mj2SpooSLH6TCtwNZvQ24',NULL,'74.7.243.234','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiblZHN1lnd25JUTJtaU8zRElQeHlKdEJqSnNzSGNUWkFIOUVuYmVzNSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778065645),('EuSFsKsIBhJ6AfwBvGjqIhqIOBmjKqU0qedDYusS',NULL,'34.30.185.191','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoicnZCejE4bnBlSDBCU0lvNTJPMEVjRHhLc1NGTTRLd1ZJNk82Y3ZCOCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1778036599),('f3Ihyog2qDJpv8qTqQ9mM8TBnmTvYvJ6GAfSXHVa',NULL,'103.145.57.171','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiWGtEZFp0T0t5N1puQU9XU3pObmNqSEgzbjd4UW5CSWh0Y0xNaDRWMCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777532828),('fq2aE83d8jud1bWhhANRBth16fxgHFsIXtbwgD5s',NULL,'13.219.121.241','RecordedFuture Global Inventory Crawler','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMVZ3dVdBNFdlVDRkemtNejBIYUVZa3RTcEdrZDhaS2pQQ0p1OXdTNCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778119507),('G5s1B8odwx93jyW9yLHM9iGtMV7al4rcRLezDrH1',NULL,'192.71.126.27','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Agency/93.8.2357.5','YTozOntzOjY6Il90b2tlbiI7czo0MDoicllqTnlrVlI5TXdZNFlUOW9qc1MxVXk5QjZUOFVLbVMzZzlZRFZpVyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1776674948),('GKF0bos3ZM9Cs7exzwQtj9VOdttEHR4udfeT8gVA',NULL,'147.185.132.66','Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity','YTozOntzOjY6Il90b2tlbiI7czo0MDoiWkdiOEZjdnBobmVsanJ1SDN3NjVWME1vb3cyUkFaNlF2WUNvNDdnSyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778258701),('hI6HQTkyYEU0nCueqUZrbfH3dAJ65urVnuX4y5X6',NULL,'66.249.66.36','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.7727.137 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','YTozOntzOjY6Il90b2tlbiI7czo0MDoieE1CRHF2Q2hFQTZNNUloS1FON0Z3eVBGeUNaODgzc21WQ1l4cWZYVCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777638094),('hJFAS82GJyCnCQUbMUhOSouY4MFFExOn7CL9LlBE',NULL,'168.144.68.254','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiYVdMMklhUFVXdWhVeXNCUVVzUmFrQU5nZjB5Vk02OWp6NzNwQ0x5ayI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777796593),('hLUr6kL11stBaq5dWEobakW3VTe5Be4H1s47nK4Y',NULL,'145.239.161.191','python-httpx/0.27.2','YTozOntzOjY6Il90b2tlbiI7czo0MDoiRG9lMXlaU1pSa3FqWDdsT09McktPcnB2bUY2dUxFMVdoakJQQmVBSCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777565404),('i5KRRtfrVpMfJp3kDLJWXHNCU4nkkpuzWGvZtFHP',NULL,'159.223.228.73','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiRm5lT01IbE5IOHJCQ2tRZGFFQUtEbVQwTzFuOHBqcHNkbFpPVVQyWiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777524670),('ImQDGpgow9TEdrOFyTQG1wBpAWY2teDk3fcDVWq6',NULL,'35.208.135.133','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoidjRWb3RMc1FBdlo0NlZIa2l3d1hrbVVyRE9vWG5sajNOeGZTdXZNWiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDI6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbS9sb2dpbiI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777877055),('j4OgFmxFi0Ai1OvNeqMTFTtyJhbvQxMiU2Y866IS',NULL,'74.7.227.34','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiM0xxVGJIa1NxQjlqSXNyNmZ2em5TNms3dHRDU0ZXdWJyOFhmanh4aCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDY6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vcmVnaXN0ZXIiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778428652),('J7onzAjQF9u3ww9Ta45r973nyCKqyR0IQfpyVSGY',NULL,'34.90.72.216','Scrapy/2.13.4 (+https://scrapy.org)','YTozOntzOjY6Il90b2tlbiI7czo0MDoibm1WS2NRRG1YclZsbjRuT0FObzhBZ1NSVWtmcks0UW16QlA1ZFVicCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777298372),('jcIZHAaFsKous4MUTuBjOXwTMNhO29SCw54fVCJN',NULL,'167.71.143.240','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoickV3YTlYZDNUN3VEV0Y2T3hqeTg1VTJWNGcyT0tha2hCcWZidjVZMiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777251199),('jV3etsdZjEFR44bgMJ6FKJcV2aEpLUnBMFQykmIS',NULL,'199.45.154.155','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiR09Pb3Q1blE2V25GOGw0cWViYnBoMm5jNnZFMDIyYWhUTnF2eDltOCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1776971148),('kd2meepxDwfAwqC1crDVuuS0itT3e6CxqqM2XMgI',NULL,'182.3.51.235','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','YTozOntzOjY6Il90b2tlbiI7czo0MDoiWG1vcm9KT3hiMjQ4RFZmV1NKNUQ0QTJLWm5VNUpLTm5UMmMzTUFvUCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777926639),('lbKiAEKnOrNIlwUmlt2YyqHqeaptmoeDcZj127in',NULL,'139.59.80.79','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:125.0) Gecko/20100101 Firefox/125.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiT2JMQ2d0YVN2TTRscVZuNm5JMFRVQ2ZUczFQV3ZmTVROb29mYVhzQiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776940276),('lM56BjGebqdzqfEuypPpiWYiyhZVb2fOOoNy0Ftf',NULL,'64.227.174.189','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoib0JsMFVSWWdXeHJFOUtLQndGcE53T0lXanJlU3J6T2ptUVo4b20xbCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777133843),('LUsySOkbHrMwbVAurQDoXAg2acE6jY00EOXqAykU',NULL,'104.168.28.15','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0.1 Safari/605.1.15','YTozOntzOjY6Il90b2tlbiI7czo0MDoiaEZZeks2VXNBUFpGcGwwZTlZWWprN0ZnakQ4NmZyZUJmUnNJNjJJYyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776939452),('mpuK1usVDbco2U9ABCJ69OGqVhjBhFHRmAhQNJ4F',NULL,'66.132.195.54','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUnZKb2k4V0VCQnZsNUlhZlI5VnVEMEpWQlNxSktMN2lLZTc1VXBYaiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777710392),('n7OnH9ce7V4C49iPbQKL44ce0LeH08n2SudSEa2P',NULL,'40.77.167.3','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoib1l4SWUzbkVqUHRJY1FCNGxmZ1lkb0IzeTZhc2pTRFRuakQ4TWg1bCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777224590),('NkYycmblAm9nby4UfEwz8zX3f0rYGLxKExAkasUm',NULL,'182.10.129.176','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoid1MzU1k1MUVORGRFQmxHUGQ2NTFlbkRkSzBaSkpSMjhlUGVlN1NwRCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDI6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbS9yZWdpc3RlciI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778231923),('NSqlwZKZaFlWRngbDBo391UEliNabNv5qLHO1iUH',NULL,'185.247.137.86','Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiWnNIYUdsd0FwN0tqeEFQeFhpUmtucHpNalVCRFVXcmNMaXB4SUVTNiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777840479),('nx9QXnt38EdLmS13wcaEj3BeBlTlOv4M3i2ApyEQ',NULL,'3.18.186.238','visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMnJrcWpmVndTZk5WVHhMZmRLOURiSHN6akFEOHZYRDEwT2V4bXVhVCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776684359),('o0Q3AHibv7ugx2GIKLmerXOIug5cIcdbJO7UKT69',NULL,'185.151.8.79','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMEhHM1lvWVRNdktUS0h3SnBnb3FDWk5tYlpMV2dtRUZoa0hxMk54aSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1778378994),('OInuXOKkIEetTa85YiV7CeoJ9DM1bNIKf6OhYDbF',NULL,'17.22.253.231','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiOW02eGc2QXFRckgwVXJNemJKUEVwT2V6cVo0SFF6V3BQMVJvNERIMiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NTg6Imh0dHBzOi8vd3d3Lmh1bWljcHJvdG90eXBpbmcuY29tL2FpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777759022),('oLjDXzM0Hv99cFT6Yl0nuv6er19vKiJ3yTCtIFIG',NULL,'145.239.161.191','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiaFB3eURwajJuSkUwVFltYXRCcWsxTldQZWszSzJWanFBWWhFcGZwSSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777565410),('oXoMopQn12xJufJqcmaBFKvSKTmeA2QhTGOGqAhd',NULL,'51.89.129.146','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiNUJGbk4xMnNjRHJHbHdCeWlWZWVrOTRwOUc3TWY0R1B1TnA5VzZhNSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzk6Imh0dHA6Ly9odW1pY3Byb3RvdHlwaW5nLmNvbS9haWdvL3B1YmxpYyI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777388508),('pav2FAjl9AkXcREFAYsoQhdfBZaJ089ZVl9ylRQZ',NULL,'103.26.82.185','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiYmU3VHlXV216UHQ1QWswRmZlUWNxdVRVcFp4NERvVVFvbVhlQm56ZyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDU6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vY29udGFjdCI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777014676),('PLLuMVp7lWd6RFJksaNIZ1aMdLVwl5k8rXTl6AdF',NULL,'146.190.255.53','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMkFmUEc4ZXIzNHN6T2QxQUs1MGlkYTBGVUlCRFdZRXQ4T043YnBmbiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777364516),('pOzZVl4rwJswf4VaFMjrHzLohBKrLpt15tMHQUch',NULL,'142.93.144.66','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiRDllU1VrTVN4WFlndWY5WExsWlB1VDNQV2Q1cjZBR0hJR0hjbHZudyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776600336),('PSN83ZCbxcCkWGDQo2Af4E3OP4hW9wYePq2wSoli',NULL,'198.235.24.185','Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity','YTozOntzOjY6Il90b2tlbiI7czo0MDoiYnJjOFQ0WHREYUVzSVlrdHR4WjBpYU5Eb2VCUElzMHRMMzlnMEJLQyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778341880),('QI8yNsPjhUAx0e59FKaJ3ulM8M9bqzcKix1rLMHI',NULL,'109.224.242.196','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiOGt5V1NpOGlWWEtNVmtpMTFyYVdVcUpDTHFqOHVHWDZaaWNRUXFjdyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDU6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vY29udGFjdCI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777839830),('QmBR8WsXm8650rgfRxmcXAyYcQGW8sP4N2nD6LPu',NULL,'74.7.227.10','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)','YTozOntzOjY6Il90b2tlbiI7czo0MDoieHNpTlVvMzduRTZuR1ZuODE2elZiWnVQeVRDZWFLRTBkbTB6elBGRiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDI6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbS9yZWdpc3RlciI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777818465),('qr3N95NpAmQ1afG8BwKwKDegSYU9aKXMislbWUIa',NULL,'77.247.120.140','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUHZSV1gxeUNkdElER1RXRk9iUE56cFh5U3lmMFpIdGFpVDZTd3ZyRyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777792414),('RCFRg9EjuA2qPRFUnU4Ijti3lRD9J8Ksn9EsE85z',NULL,'142.93.144.66','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoicVJuNXlSOVNOUzBOczVsMjVYbE81Ym1kTGxHaDZZaXVIckk2WjM1RCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1776600336),('RPUdacfROhCfz2vDeUFMxFbMqTSTffTdunA8sToB',NULL,'104.168.28.15','Mozilla/5.0 (Debian; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUlZjR1hpWHZRTHJmU00yNElTTzRYUUlTMFZ3TUY3QWJYZEt6YVpBRSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1776939452),('RVSHJOhLP63qC20xYQFfIbV5xxyILi32DsZywoF8',NULL,'66.249.71.172','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiT00zbmFwd25FcEVRVUMxYmZiN0U1Rm9sMVlZSHN2OHBldkJLMmJrZyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777638112),('s30Xd9LfhMF0ZYkO6CGrZB61BLo1XNlSE66EXv5v',NULL,'34.10.2.22','Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiYUxEQTduWURPeHlzRnVRb1R5a2JjYTcwdTdZcHBwcTVkVUlSTko1eCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777820791),('S88kaKsYGZMWGsERNCzxEU3TzNnuSF1Ygk09OAuX',NULL,'205.169.39.14','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoidEZSeDlDRkh0ZHUxd2FCdm51dFBhb1VlT01nNUdMSUFnQVpRbzhXcSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777298646),('t7DAwiNV1ogICgGgFHSiYSFPnUM02kEfcXvUWXhR',NULL,'51.195.215.128','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiSzRVU0RCOHkzQU9HZ3h0Q1N6UXZmU0I5c3FDNUg3VGtjSElPSG1PSyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDQ6Imh0dHBzOi8vd3d3Lmh1bWljcHJvdG90eXBpbmcuY29tL2FpZ28vcHVibGljIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777392483),('tFH8SwNJObzuwHbMfHQrKuE7OImE3OiKQTWCDQJt',NULL,'157.55.39.9','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoieXpsMnZmRE1ZZFZ3Y0dMdzlhVjc5NGhvbGtUOVNYN0gzR3BXcjQ4SSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1776687699),('TNLloT4pEgU4OSV0EK2hT7qoZo35oFUkAH9p4D18',NULL,'94.23.188.208','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiZ09uc052VzMxemhqbzRWU1lEeXlPdkx5Y1BGTHo3OWxxdUdKQ2hyUyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHA6Ly93d3cuaHVtaWNwcm90b3R5cGluZy5jb20vYWlnby9wdWJsaWMiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777501299),('TqD7gpHO3FNrfwkpDjAcmoHZtCBpiyxhHcgY8Jjx',NULL,'14.185.72.92','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoidTV0aWxucGNoTXhoZVZQVHJkRW44RnVqU3VGV0t5UDNlRExxbkphdSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778051632),('TYnuOkUoJ4ezU6BMpezzjrbNuIGBbe3MlqD5udgh',NULL,'57.129.136.58','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiSjFtVDJqY1V4M1ZPcG9rT2cxT1R1NlBSamdZeGI3Yjd6dmVZMUNZNSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778199843),('tytxkkYFyZmRQeUH1tYhRNbclAEHAmmxNoxYlS8w',NULL,'198.163.193.174','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/89.0.4389.114 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiYVVaQktwR0V2N1VQQnZJY05SRTl5RTk0MnJQblpiMDAxZTZWRnF1RiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777705741),('uUjGtUyGc4IZeV8nyv0vMqehGMkqGNP2Jo9abte8',NULL,'205.210.31.178','Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity','YTozOntzOjY6Il90b2tlbiI7czo0MDoibXZZRHl2WkgycVljWFdHVEFLbTNJSTY1emp1ZnN2dUt6QzdjdUpGMSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1778404165),('UUSYbIPbObq6SXlHzb5MMhxBWIXc8oAcOWs23Oti',NULL,'134.122.16.141','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiaThPSDZ5Y2RpdUxRQVBtVGExbWFrQ3RGVk1PN3BEbFZIcEFPeXU2cSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777425355),('uuVEjbjvx589FXZP55u98tZKYleF5hH4vCuLN05x',NULL,'64.227.174.189','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUTA2RUpTZEF1dmR4VkFqajdpRm5uczBHYnN4NHdGM041N2o0ejJqayI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777133846),('V0DVau76I4MKjZV2XWYc0US9jT5m7chUfrfxb3v1',NULL,'172.71.164.167','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiWFNaTld0Q0ZJN3RpY0d4SWM4WjlSTENidWFMOER3RkM5SXpPUk9pSyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776574954),('V0Tu5VqFV1MOO6BRBr5iTq53dsskLWX2QPG52Ops',NULL,'52.214.31.127','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiV0VyWTRNaHlIcVNubkpEWkEyVnNGeUlicmtFeElhNnZIS2UzMUMySCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778529221),('vjivQMFI1KEJrlCOuvvzKe9ld783BSzNZJaxF8td',NULL,'77.74.177.114','Mozilla/5.0 (Linux; arm_64; Android 12; CPH2205) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 YaBrowser/23.3.3.86.00 SA/3 Mobile Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUHp1SldhYnhXdjRteFFtZ2hXWmgzNUM2ckN6eEJBU0NpaGprQXpsNyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776819962),('W2o4TPWO8m6HqV3V4eSNNRiLnRt20utwZgVfQndJ',NULL,'178.123.114.240','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUkxaNkFRY3Z0UGFTRDZUNVJlQndsYTc0cnU2cVBRdWd1ZXhhaksydSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777360115),('wr8LPUdMppGJMJYj30yh6eMCnPXqafsXI1U2B5I8',NULL,'206.135.187.191','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4880.146 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiRmxhUndvbjJEeVZaeDl0aVpSdVlXYWNoOUhVSDFwZnBoMG9hRWt3MSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778145655),('WTh1Nc7wGoLyzzsKmTewLlLa9pltkoa8id5Ag8dU',NULL,'35.208.135.133','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiSzNCVHFtQzA0VFZOMUNKdFVocjVzMGFYZjZJbG83bzY4TW5IQ3J4ZSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777877054),('WXLsXVJyBjcOASt7X3nj3xYMoDqIIFG4o53JLbFT',NULL,'77.74.177.118','Mozilla/5.0 (Linux; arm_64; Android 12; CPH2205) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 YaBrowser/23.3.3.86.00 SA/3 Mobile Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiNGl6dVJ0c3BRZzZGVUQ2OEFNQkVyNDUwYjJ2TUtBb0lmaWc3NTZFdyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777845623),('X9eSZsUIbFEVgyfpHgLR39dFZthvnWiYJK9EMdui',NULL,'192.71.142.40','Mozilla/5.0 (iPhone; CPU iPhone OS 17_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1.2 Mobile/15E148 Safari/604','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMGkxYmNmb1J4MmdlYlNLcEg5d0FWTUMzZVV4dmNyR284dnkydXN5NiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777327955),('XAo4loojXFkvjdoI9JeY6gOZHvSdHRlT35zt00zY',NULL,'168.144.68.254','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoidW04dUxlZGZEN3ZDbXFXOGdIVVNERWVBcmlkTkVEaEpUZkN5d2ZTZiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777796594),('XeyRNQuVRC7w3OdmhfjHRl9CD38qeE6WUSDheMSG',NULL,'199.45.154.113','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiaEFaUHhqZFFrOHoxYXBWRW00bjk2TkUxSVVYRHZyckdpc25pUUR0OCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776952600),('XLSQ8zJdjzgYL0Wc3wTnU21eB8Jq5dPdEhWXAN41',NULL,'57.129.136.58','python-httpx/0.27.2','YTozOntzOjY6Il90b2tlbiI7czo0MDoib1R0YUhYWEx0S1M2bGZ6STBFbjFVMDN4M0lOU2hiY3hQQkpsOUhvNSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778199841),('xRTzRhGyNPFCvUiN3Qm19tmb9EFBoiq9sNFSkA9f',NULL,'34.100.229.63','Mozilla/5.0 (Linux; Android 5.1.1; SM-E700H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Mobile Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoicXptbE14anJmTDRqellIN3gxd3g1TjM2cEYwTzIzTmM5TEY0R1FJOSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777568647),('xUJJfOUQgpjCE5PzaNVJuifKYQNlLfJBlI3lt5RJ',NULL,'145.239.161.191','python-httpx/0.27.2','YTozOntzOjY6Il90b2tlbiI7czo0MDoiRUdKZE9IbDdGaVlVNmI1N0ZMekVNOVpMZTRGZ1c4YzlWOFkxSUEwRSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777565404),('y9IXeUitJBOR6cV8NtXr0bTcSik2Ayp4NzCYdoR1',NULL,'159.223.228.73','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiN2FjNGlKMHZuTkt3UHVwSkg0N3duWHpvN2Ztc1RNWHQ4QjNoNHpxbSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777524670),('yI1Whmh4CbYDx9Tc18FhRA1oV90TVdba7cGEBauk',NULL,'40.77.167.52','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoibE9zdGlDNjNPcDAyTFNUbW4zUGFCb0NmNzRRT3Bka0VyWGlLOUhUZiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDI6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbS9yZWdpc3RlciI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776650000),('yKa4bJOqSTVJtdd0zK1yu4e3fuKxxrpUtD6vwoYv',NULL,'185.247.137.19','Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMklsbmFyT3RVcmxLc1FGTmNaWnQxYmVLOXJ0elFvdVNFY1QwTjg2NCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776857022),('zMvjXvL9FCLroKts1g8ZfuJZLzpCf3yyWSPkD4Rp',NULL,'66.249.71.171','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.7727.137 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiTlRNQ2F2RDMzUjBQOEZKQlVYRnlCV01zODZvdDQ5Y3NEek13UmlyaCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777838150); +/*!40000 ALTER TABLE `sessions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `users` +-- + +DROP TABLE IF EXISTS `users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `users` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_role` varchar(255) NOT NULL, + `username` varchar(255) NOT NULL, + `password` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `email` varchar(255) NOT NULL, + `email_verified_at` timestamp NULL DEFAULT NULL, + `telepon` varchar(255) NOT NULL, + `alamat` varchar(255) NOT NULL, + `gender` varchar(255) NOT NULL, + `remember_token` varchar(100) DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + `active_status` tinyint(1) NOT NULL DEFAULT 0, + `avatar` varchar(255) NOT NULL DEFAULT 'avatar.png', + `dark_mode` tinyint(1) NOT NULL DEFAULT 0, + `messenger_color` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `users_username_unique` (`username`), + UNIQUE KEY `users_email_unique` (`email`) +) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `users` +-- + +LOCK TABLES `users` WRITE; +/*!40000 ALTER TABLE `users` DISABLE KEYS */; +INSERT INTO `users` (`id`, `user_role`, `username`, `password`, `name`, `email`, `email_verified_at`, `telepon`, `alamat`, `gender`, `remember_token`, `created_at`, `updated_at`, `active_status`, `avatar`, `dark_mode`, `messenger_color`) VALUES (1,'user','w333zard','$2y$12$vqAM30B8Nku.SFABSy1hsOPf5c0nx3vKn0EQTlr59M1KJo9IABSOG','Wzrd','wzrd@gmail.com',NULL,'081392147474','Bandung','male','d7MRcAZTHFgTUGRgt0rjytxfdNk9bc4XPSkzjw70KrZ53X2tnTPJpkOzs6Vq','2024-06-01 05:53:14','2024-06-04 10:26:39',0,'avatar.png',0,NULL),(2,'user','fiona74','$2y$12$7qKxhbLtP1Ji41g.8oX1Du8SMdGLrXzezEJxLWkyc6H7oNVat86.i','Miss Yvonne Reilly','white.rebeka@example.net',NULL,'732-608-2649','253 McGlynn Loop Suite 580\nOdessabury, PA 89500','male',NULL,'2024-06-01 05:54:34','2024-06-01 05:54:34',0,'avatar.png',0,NULL),(3,'user','conn.sister','$2y$12$Ib8VEmsQIYXgRxNU5cdYB.uAwP5Z2hnxNJXuYHGw7ruULen2.hxE2','Josiane Yundt','bell84@example.net',NULL,'(319) 294-5206','25250 Scottie Coves Apt. 087\nLake Samanta, ID 49859','female',NULL,'2024-06-01 05:54:34','2024-06-01 05:54:34',0,'avatar.png',0,NULL),(4,'doctor','homenick.vergie','$2y$12$ihmUevbKN8nLttXkm52h/.AW4ljlC6psb/RTWPaQCnZKgL6H2ZR5.','Brook Jerde MD','lconsidine@example.com',NULL,'1-539-665-4318','99208 Hagenes Stravenue\nHyattton, IN 55466-0972','male','yInLnyHttK8GSpWReLB8nap9FbwH7KSVkBNdePEIzn7z5royAQFVR3Dh1asN','2024-06-01 05:54:34','2024-06-01 05:54:34',0,'avatar.png',0,NULL),(5,'user','kozey.arjun','$2y$12$9J6Qe1MW/lgse7JUSWrjvufKAd/R0cVUrZJ5KywNjYIc9TFwS5fUy','Dr. Savanna Pollich','zora.hill@example.org',NULL,'+1-978-966-9205','85851 Bartell Points Suite 374\nSouth Catalinamouth, OK 08021','male',NULL,'2024-06-01 05:55:28','2024-06-01 05:55:28',0,'avatar.png',0,NULL),(6,'user','mcclure.michael','$2y$12$35qM7AcPm.trJxQoL.DKSu0xwgz8AlzfSuVeCawbJCN/BPQvs/oRO','Brianne Gerhold','ruth.ratke@example.org',NULL,'+14258341017','953 Jodie Radial\nBodebury, MS 49657-0768','female',NULL,'2024-06-01 05:55:28','2024-06-01 05:55:28',0,'avatar.png',0,NULL),(7,'doctor','april.farrell','$2y$12$PmUyYRX3uN86dxw331Rnq.vPn7XU5LzrCo6.kvRNgp2J4fmM3Ueb6','Dr. Thomas Huel DDS','luisa.schinner@example.com',NULL,'(440) 794-3689','35092 Ursula Via Suite 137\nNikolashaven, CA 14676-8653','male',NULL,'2024-06-01 05:55:29','2024-06-04 10:26:33',1,'avatar.png',0,NULL),(8,'user','erick.bauch','$2y$12$aePpoOCoY4IGmEZXvLPaU.qe8FPqqcn3Rvzm.g0eAjiIJ6mLjDLtu','Dr. Earline Ullrich IV','amina.johnston@example.org',NULL,'425-475-4723','278 Walker Freeway Suite 499\nOberbrunnerborough, WY 97255','female',NULL,'2024-06-01 05:55:31','2024-06-01 05:55:31',0,'avatar.png',0,NULL),(9,'user','robin62','$2y$12$S9F8lfD3sg6/YCNpDla0yem2DEoTuUYfbvA.egIz8bfd3oAQOokqa','Prof. Pablo Smitham','hbreitenberg@example.com',NULL,'318.605.4385','604 Stroman Courts Apt. 049\nEast Maximo, MS 59928','female',NULL,'2024-06-01 05:55:31','2024-06-01 05:55:31',0,'avatar.png',0,NULL),(10,'doctor','nash47','$2y$12$zYYrxrQwg9tA5OCTWuqkd.6Y4Fn4jpXdFgN/SJoHeB8ntF0gt2WPW','Ms. Sydni Bogisich','stuart09@example.net',NULL,'351-578-2629','672 Nolan Turnpike Suite 414\nSouth Rachael, CT 05959','male',NULL,'2024-06-01 05:55:31','2024-06-01 05:55:31',0,'avatar.png',0,NULL),(11,'user','abagail.mills','$2y$12$eCxBHNaaY4//PurIgAe.O.iPdHSerCJFRNbuXVxSsFb3oh3EXCHeu','Rosanna Fritsch','shanon38@example.net',NULL,'1-240-329-5626','98446 Brady Tunnel Apt. 569\nWest Garnett, NY 86986','male',NULL,'2024-06-01 05:55:32','2024-06-01 05:55:32',0,'avatar.png',0,NULL),(12,'user','jkoepp','$2y$12$dL45ozH7p3q1Hm2Xr7So6uHZkN78EQSPz57W6qzs0rtcjCnShfvPi','Issac Bogan','jerde.adalberto@example.org',NULL,'412-970-1887','4361 Ryley Inlet\nEast Vance, ND 39203','male',NULL,'2024-06-01 05:55:32','2024-06-01 05:55:32',0,'avatar.png',0,NULL),(13,'doctor','lavonne22','$2y$12$ZeE9jQy3KOKVTa2867ueme.rUN7oNxX6eFcgwSAWDMFT8KCCWHpCe','Dr. Armando Larson Jr.','cruickshank.hugh@example.net',NULL,'+1-424-675-5415','712 Langosh Springs Suite 281\nPort Abigale, SD 81790-7386','male',NULL,'2024-06-01 05:55:32','2024-06-01 05:55:32',0,'avatar.png',0,NULL),(14,'user','OurMine','$2y$12$UlrkNvBwJ6ZjHl9R/duCjuJIc1QiEqwSOPNusFh8XoiZtbpc3ZPYW','OurMine','temp@gmail.com',NULL,'08120391831','Bandung','male',NULL,'2024-06-03 10:14:39','2024-06-03 10:14:39',0,'avatar.png',0,NULL),(15,'user','OurMinez','$2y$12$J1E8XWmGJVYPJY33gEFqeOakgNiqda10le7TyPWWuR0uOrCKIgP66','OurMine','ourmine@gmail.com',NULL,'081294297529','Serang','male',NULL,'2024-06-05 23:33:08','2024-06-05 23:33:08',0,'avatar.png',0,NULL),(16,'user','vidyaratmayanti','$2y$12$sIEJsgp9ifsh34R23RD89eOEX/zRk/as9HYWCYNz21EkxB2wrggpa','vidya','vidyaanandar@gmail.com',NULL,'0813395835584','jalan sukapura','female',NULL,'2024-06-06 07:46:24','2024-06-06 07:46:24',0,'avatar.png',0,NULL),(17,'user','wili','$2y$12$QNUScDrSQllZgMgz.03Z1OoZJenrhx428rzF5Sy2SlG0FRgbFzlky','wili','vanillateaaaa@gmail.com',NULL,'081919423939','bandung','male',NULL,'2024-06-06 07:47:39','2024-06-06 07:47:39',0,'avatar.png',0,NULL),(18,'user','w333zard_','$2y$12$hT2S.9nZ30zr8sshX0MY3u//FUNL/MBh6sCcXuFTZ9T2Eq8i9Qr5q','w333zard','w333zard@gmail.com',NULL,'081392147474','Bandung','male',NULL,'2024-06-06 09:31:32','2024-06-06 09:31:32',0,'avatar.png',0,NULL),(19,'user','Wili1','$2y$12$Qh21eJl1KjGoSSKkV0e7NOyw2pLTLqMHZcfy1H.Lsk1tnr.XbQe2y','Wili','wili@gmail.com',NULL,'08927728282','Jajakajkaka','male',NULL,'2024-06-06 23:39:27','2024-06-06 23:39:27',0,'avatar.png',0,NULL),(20,'user','satria','$2y$12$lEhWWerDRW9mIh5Dl/G2muQ7am5bIYbNNPtT63xq46rBuc8fQkCgu','satria','satman0273@gmail.com',NULL,'122445','reyuuu','male',NULL,'2024-06-07 00:45:17','2024-06-07 00:56:17',0,'avatar.png',0,NULL),(21,'user','Glorious Satria Dhamang Aji','$2y$12$CaOzSb2HlyFGHILEQfARb.ZE5Q75hxvjW0HnimC3H57XBOUjzymMm','satriadhm','glorioussatria@gmail.com',NULL,'082241389340','Klaseman','male',NULL,'2024-06-13 18:13:13','2024-06-13 18:13:13',0,'avatar.png',0,NULL),(22,'user','vidya ratmayanti','$2y$12$GaVjjyaQGn6msiYBPJvR5..gGH0wifUrxfU6T0kIwGaHNG1P1Nm/O','vidya','vidyaaandar@gmail.com',NULL,'081339583085','jalan sukapura','female',NULL,'2024-06-14 00:19:20','2024-06-14 00:19:20',0,'avatar.png',0,NULL),(23,'user','satriamandala','$2y$12$N1j5eRelUNM7mS2frEtWAOGjJtb56leXNxqR.sI4IefnByZC6qgjy','Satria','satria@local.com',NULL,'083242343242','Bandung','male',NULL,'2024-06-22 00:51:39','2024-06-22 00:51:39',0,'avatar.png',0,NULL),(24,'user','rakha','$2y$12$./NT0qImtg8fFrA60XRTbOHcXoUZJ5OGRjWPobEd5KjAwmEyWzwii','rakha rakha','cakha219@gmail.com',NULL,'082261690122','jl. ahmad yani','male',NULL,'2024-07-15 04:44:08','2024-07-15 04:44:08',0,'avatar.png',0,NULL),(25,'user','rakhamuhammad50@gmail.com','$2y$12$9InQ6LIKmdFAscaHUkmMHOYSPseyV16SZRmSYfXsyOpZzyfyqqqii','Muhammad Rakha','rakhamuhammad50@gmail.com',NULL,'082271701212','jl.ahmad yani','male',NULL,'2024-08-29 05:25:56','2024-08-29 05:25:56',0,'avatar.png',0,NULL),(26,'user','lboyz','$2y$12$vxqFds/HAC6qCt/9mdY2WutlXH/M2kD4Kj6oPXU1ecZURcpAHpFXu','duta','razaqduta@gmail.com',NULL,'082294317150','wisma sehati','male',NULL,'2024-09-26 18:17:02','2024-09-26 18:17:02',0,'avatar.png',0,NULL),(27,'user','tes','$2y$12$D557srz78ZSVAu8cl3uIguNDYRC/NfyukxIkYuVWYlrfeCFw8egZm','jong un','jongun189@gmail.com',NULL,'085342234480','JL. Telekomunikasi','male',NULL,'2024-10-01 12:13:31','2024-10-01 12:13:31',0,'avatar.png',0,NULL),(28,'user','tes12','$2y$12$N8UOjp5trhUzxJboV6bAgOwtjsq4Q72AT1c4T4342075QK5aG/aT6','jong un','test@gmail.com',NULL,'0822984461154','jl. Tes','male',NULL,'2024-10-03 15:01:21','2024-10-03 15:01:21',0,'avatar.png',0,NULL),(29,'user','mrakhaa','$2y$12$CUH1MIAiHrhC8qbHOUlmX.9Y5B3DdutjgVjRIKcok5CJ2RK2k1iqW','Rakha','rakhamuhammad2908@gmail.com',NULL,'082261690122','Jl. Ahmad Yani','male',NULL,'2024-10-10 03:32:04','2024-10-10 03:32:04',0,'avatar.png',0,NULL),(30,'user','mridha747','$2y$12$4Fep3uFi6PjuBOuj/APyLuZYR3A5J0WIZI512xoubfe0szoxTdzw6','Muhammad Ridha','mridha747@gmail.com',NULL,'082267370810','Jl. Ahmad Yani','male',NULL,'2024-11-01 07:01:09','2024-11-01 07:01:09',0,'avatar.png',0,NULL),(31,'user','dodit','$2y$12$FN4Yh7Np1NCqFm.R.qohmOgb4JFejIEtu1JP2W9pK1k4ySQq4GoH6','dodit kurnianto','dodit@gmail.com',NULL,'08235417819','Bandung','male',NULL,'2025-04-11 00:05:38','2025-04-11 00:05:38',0,'avatar.png',0,NULL),(32,'user','didit','$2y$12$VFbQ4B8QRC7pC344QLQKOuhkHvs1ZoGVeKSYTdldkioQw3RP0Fg.m','didit','didit@gmail.com',NULL,'081527171','bdg','male',NULL,'2025-04-11 02:20:12','2025-04-11 02:20:12',0,'avatar.png',0,NULL),(33,'user','tsaqila','$2y$12$P8C6tMdXAdCM3kgt36MF/OLy9AfCCzP56ty02kImmae6slBLMJcj.','Tsaqila','tsaqila48@gmail.com',NULL,'083897472865','-','female',NULL,'2025-04-24 07:42:18','2025-04-24 07:42:18',0,'avatar.png',0,NULL),(34,'user','asdasd','$2y$12$iTQS/oULgvCYmQP/nCnGyupIJ/ONKLg.Ja2NGsHLBDC9OmCaSVLh.','asdasda','asdasdasd@gmail.com',NULL,'sdasdasd','asdasdasd','male',NULL,'2025-04-25 09:26:55','2025-04-25 09:26:55',0,'avatar.png',0,NULL),(35,'user','vikhanmuharram','$2y$12$RA7Rc9.NecZWFDMBanhkAuTonQYF6ydpTK1XQuFsZSdlOhNRyYJf2','Muhammad Vikhan Muharram','muhammadvikhanmuharram@gmail.com',NULL,'081221003708','Bandung','male',NULL,'2025-08-12 01:07:07','2025-08-12 01:07:07',0,'avatar.png',0,NULL); +/*!40000 ALTER TABLE `users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Dumping events for database 'humicpro_aigo' +-- + +-- +-- Dumping routines for database 'humicpro_aigo' +-- +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2026-05-12 16:17:20 diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..5ef207a --- /dev/null +++ b/package-lock.json @@ -0,0 +1,2433 @@ +{ + "name": "Aigo", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "bootstrap-icons": "^1.11.3" + }, + "devDependencies": { + "@tailwindcss/forms": "^0.5.2", + "alpinejs": "^3.4.2", + "autoprefixer": "^10.4.2", + "axios": "^1.6.4", + "laravel-echo": "^1.16.0", + "laravel-vite-plugin": "^1.0", + "postcss": "^8.4.31", + "pusher-js": "^8.4.0-rc2", + "tailwindcss": "^3.1.0", + "vite": "^5.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz", + "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz", + "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz", + "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz", + "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz", + "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz", + "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz", + "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz", + "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz", + "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz", + "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz", + "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz", + "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz", + "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz", + "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz", + "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz", + "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz", + "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz", + "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz", + "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz", + "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz", + "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz", + "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz", + "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.13.0.tgz", + "integrity": "sha512-5ZYPOuaAqEH/W3gYsRkxQATBW3Ii1MfaT4EQstTnLKViLi2gLSQmlmtTpGucNP3sXEpOiI5tdGhjdE111ekyEg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.13.0.tgz", + "integrity": "sha512-BSbaCmn8ZadK3UAQdlauSvtaJjhlDEjS5hEVVIN3A4bbl3X+otyf/kOJV08bYiRxfejP3DXFzO2jz3G20107+Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.13.0.tgz", + "integrity": "sha512-Ovf2evVaP6sW5Ut0GHyUSOqA6tVKfrTHddtmxGQc1CTQa1Cw3/KMCDEEICZBbyppcwnhMwcDce9ZRxdWRpVd6g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.13.0.tgz", + "integrity": "sha512-U+Jcxm89UTK592vZ2J9st9ajRv/hrwHdnvyuJpa5A2ngGSVHypigidkQJP+YiGL6JODiUeMzkqQzbCG3At81Gg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.13.0.tgz", + "integrity": "sha512-8wZidaUJUTIR5T4vRS22VkSMOVooG0F4N+JSwQXWSRiC6yfEsFMLTYRFHvby5mFFuExHa/yAp9juSphQQJAijQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.13.0.tgz", + "integrity": "sha512-Iu0Kno1vrD7zHQDxOmvweqLkAzjxEVqNhUIXBsZ8hu8Oak7/5VTPrxOEZXYC1nmrBVJp0ZcL2E7lSuuOVaE3+w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.13.0.tgz", + "integrity": "sha512-C31QrW47llgVyrRjIwiOwsHFcaIwmkKi3PCroQY5aVq4H0A5v/vVVAtFsI1nfBngtoRpeREvZOkIhmRwUKkAdw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.13.0.tgz", + "integrity": "sha512-Oq90dtMHvthFOPMl7pt7KmxzX7E71AfyIhh+cPhLY9oko97Zf2C9tt/XJD4RgxhaGeAraAXDtqxvKE1y/j35lA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.13.0.tgz", + "integrity": "sha512-yUD/8wMffnTKuiIsl6xU+4IA8UNhQ/f1sAnQebmE/lyQ8abjsVyDkyRkWop0kdMhKMprpNIhPmYlCxgHrPoXoA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.13.0.tgz", + "integrity": "sha512-9RyNqoFNdF0vu/qqX63fKotBh43fJQeYC98hCaf89DYQpv+xu0D8QFSOS0biA7cGuqJFOc1bJ+m2rhhsKcw1hw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.13.0.tgz", + "integrity": "sha512-46ue8ymtm/5PUU6pCvjlic0z82qWkxv54GTJZgHrQUuZnVH+tvvSP0LsozIDsCBFO4VjJ13N68wqrKSeScUKdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.13.0.tgz", + "integrity": "sha512-P5/MqLdLSlqxbeuJ3YDeX37srC8mCflSyTrUsgbU1c/U9j6l2g2GiIdYaGD9QjdMQPMSgYm7hgg0551wHyIluw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.13.0.tgz", + "integrity": "sha512-UKXUQNbO3DOhzLRwHSpa0HnhhCgNODvfoPWv2FCXme8N/ANFfhIPMGuOT+QuKd16+B5yxZ0HdpNlqPvTMS1qfw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tailwindcss/forms": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.7.tgz", + "integrity": "sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==", + "dev": true, + "dependencies": { + "mini-svg-data-uri": "^1.2.3" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/@vue/reactivity": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz", + "integrity": "sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==", + "dev": true, + "dependencies": { + "@vue/shared": "3.1.5" + } + }, + "node_modules/@vue/shared": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz", + "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==", + "dev": true + }, + "node_modules/alpinejs": { + "version": "3.13.7", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.13.7.tgz", + "integrity": "sha512-rcTyjTANbsePq1hb7eSekt3qjI94HLGeO6JaRjCssCVbIIc+qBrc7pO5S/+2JB6oojIibjM6FA+xRI3zhGPZIg==", + "dev": true, + "dependencies": { + "@vue/reactivity": "~3.1.1" + } + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/autoprefixer": { + "version": "10.4.18", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.18.tgz", + "integrity": "sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001591", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axios": { + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz", + "integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bootstrap-icons": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.11.3.tgz", + "integrity": "sha512-+3lpHrCw/it2/7lBL15VR0HEumaBss0+f/Lb6ZvHISn1mlK83jjFpooTLsMWbIjJMDjDjOExMsTxnXSIT4k4ww==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ] + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001598", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001598.tgz", + "integrity": "sha512-j8mQRDziG94uoBfeFuqsJUNECW37DXpnvhcMJMdlH2u3MRkq1sAI0LJcXP1i/Py0KbSIC4UDj8YHPrTn5YsL+Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.708", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.708.tgz", + "integrity": "sha512-iWgEEvREL4GTXXHKohhh33+6Y8XkPI5eHihDmm8zUk5Zo7HICEW+wI/j5kJ2tbuNUCXJ/sNXa03ajW635DiJXA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz", + "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.19.12", + "@esbuild/android-arm": "0.19.12", + "@esbuild/android-arm64": "0.19.12", + "@esbuild/android-x64": "0.19.12", + "@esbuild/darwin-arm64": "0.19.12", + "@esbuild/darwin-x64": "0.19.12", + "@esbuild/freebsd-arm64": "0.19.12", + "@esbuild/freebsd-x64": "0.19.12", + "@esbuild/linux-arm": "0.19.12", + "@esbuild/linux-arm64": "0.19.12", + "@esbuild/linux-ia32": "0.19.12", + "@esbuild/linux-loong64": "0.19.12", + "@esbuild/linux-mips64el": "0.19.12", + "@esbuild/linux-ppc64": "0.19.12", + "@esbuild/linux-riscv64": "0.19.12", + "@esbuild/linux-s390x": "0.19.12", + "@esbuild/linux-x64": "0.19.12", + "@esbuild/netbsd-x64": "0.19.12", + "@esbuild/openbsd-x64": "0.19.12", + "@esbuild/sunos-x64": "0.19.12", + "@esbuild/win32-arm64": "0.19.12", + "@esbuild/win32-ia32": "0.19.12", + "@esbuild/win32-x64": "0.19.12" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/laravel-echo": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/laravel-echo/-/laravel-echo-1.16.0.tgz", + "integrity": "sha512-BJGUa4tcKvYmTkzTmcBGMHiO2tq+k7Do5wPmLbRswWfzKwyfZEUR+J5iwBTPEfLLwNPZlA9Kjo6R/NV6pmyIpg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/laravel-vite-plugin": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.0.2.tgz", + "integrity": "sha512-Mcclml10khYzBVxDwJro8wnVDwD4i7XOSEMACQNnarvTnHjrjXLLL+B/Snif2wYAyElsOqagJZ7VAinb/2vF5g==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "vite-plugin-full-reload": "^1.1.0" + }, + "bin": { + "clean-orphaned-assets": "bin/clean.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mini-svg-data-uri": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", + "dev": true, + "bin": { + "mini-svg-data-uri": "cli.js" + } + }, + "node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.4.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz", + "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", + "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.16", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", + "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, + "node_modules/pusher-js": { + "version": "8.4.0-rc2", + "resolved": "https://registry.npmjs.org/pusher-js/-/pusher-js-8.4.0-rc2.tgz", + "integrity": "sha512-d87GjOEEl9QgO5BWmViSqW0LOzPvybvX6WA9zLUstNdB57jVJuR27zHkRnrav2a3+zAMlHbP2Og8wug+rG8T+g==", + "dev": true, + "dependencies": { + "tweetnacl": "^1.0.3" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.13.0.tgz", + "integrity": "sha512-3YegKemjoQnYKmsBlOHfMLVPPA5xLkQ8MHLLSw/fBrFaVkEayL51DilPpNNLq1exr98F2B1TzrV0FUlN3gWRPg==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.13.0", + "@rollup/rollup-android-arm64": "4.13.0", + "@rollup/rollup-darwin-arm64": "4.13.0", + "@rollup/rollup-darwin-x64": "4.13.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.13.0", + "@rollup/rollup-linux-arm64-gnu": "4.13.0", + "@rollup/rollup-linux-arm64-musl": "4.13.0", + "@rollup/rollup-linux-riscv64-gnu": "4.13.0", + "@rollup/rollup-linux-x64-gnu": "4.13.0", + "@rollup/rollup-linux-x64-musl": "4.13.0", + "@rollup/rollup-win32-arm64-msvc": "4.13.0", + "@rollup/rollup-win32-ia32-msvc": "4.13.0", + "@rollup/rollup-win32-x64-msvc": "4.13.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", + "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.19.1", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/tweetnacl": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", + "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", + "dev": true + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/vite": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.1.6.tgz", + "integrity": "sha512-yYIAZs9nVfRJ/AiOLCA91zzhjsHUgMjB+EigzFb6W2XTLO8JixBCKCjvhKZaye+NKYHCrkv3Oh50dH9EdLU2RA==", + "dev": true, + "dependencies": { + "esbuild": "^0.19.3", + "postcss": "^8.4.35", + "rollup": "^4.2.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-plugin-full-reload": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.1.0.tgz", + "integrity": "sha512-3cObNDzX6DdfhD9E7kf6w2mNunFpD7drxyNgHLw+XwIYAgb+Xt16SEXo0Up4VH+TMf3n+DSVJZtW2POBGcBYAA==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "picomatch": "^2.3.1" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yaml": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz", + "integrity": "sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==", + "dev": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..ab59e03 --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build" + }, + "devDependencies": { + "@tailwindcss/forms": "^0.5.2", + "alpinejs": "^3.4.2", + "autoprefixer": "^10.4.2", + "axios": "^1.6.4", + "laravel-echo": "^1.16.0", + "laravel-vite-plugin": "^1.0", + "postcss": "^8.4.31", + "pusher-js": "^8.4.0-rc2", + "tailwindcss": "^3.1.0", + "vite": "^5.0" + }, + "dependencies": { + "bootstrap-icons": "^1.11.3" + } +} diff --git a/php.ini b/php.ini new file mode 100644 index 0000000..2ed1979 --- /dev/null +++ b/php.ini @@ -0,0 +1,5 @@ +upload_max_filesize = 160M +post_max_size = 160M +memory_limit = 256M +max_execution_time = 300 +max_input_time = 300 diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..506b9a3 --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,33 @@ + + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + + + diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..49c0612 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..3aec5e2 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,21 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + diff --git a/public/asset/address.png b/public/asset/address.png new file mode 100644 index 0000000..c8a29ee Binary files /dev/null and b/public/asset/address.png differ diff --git a/public/asset/css/acceptance-patient.css b/public/asset/css/acceptance-patient.css new file mode 100644 index 0000000..f62462b --- /dev/null +++ b/public/asset/css/acceptance-patient.css @@ -0,0 +1,166 @@ +.appointment-card { + border-radius: 20px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + align-items: start; + gap: 10px; + max-width: 600px; + min-width: 400px; +} + +.patient-avatar { + background-color: #a4bbe9; + border-radius: 50%; + width: 50px; + height: 50px; +} + +.patient-info { + display: flex; + margin-top: 8px; + flex-direction: column; +} + +.patient-name { + color: #1c2541; + font: 500 16px/75% Poppins, sans-serif; +} + +.patient-email { + color: #8296c5; + margin-top: 2px; + font: 400 14px/86% Poppins, sans-serif; +} + +.appointment-details { + display: flex; + flex-direction: column; + max-width: 330px; + font-size: 14px; + color: #384c7f; + font-weight: 400; +} + +.location-info { + display: flex; + gap: 10px; +} + +.location-icon { + width: 18px; + fill: #384c7f; +} + +.location-text { + font-family: Poppins, sans-serif; + flex-grow: 1; + margin: auto 0; +} + +.date-time-info { + display: flex; + justify-content: space-between; + width: 100%; + margin-top: 8px; +} + +.date-info { + display: flex; + gap: 6px; + margin: auto -5px auto 0; +} + +.date-icon { + width: 20px; + stroke: #384c7f; +} + +.date-text { + font-family: Poppins, sans-serif; + margin: auto 0; +} + +.time-info { + display: flex; + gap: 9px; +} + +.time-icon { + width: 20px; + fill: #384c7f; +} + +.time-text { + font-family: Poppins, sans-serif; + margin: auto 0; +} + +.approve-button { + border-style: none; + border-radius: 50px; + background-color: var(--Green-2, #51dbd3); + display: flex; + gap: 8px; + padding: 2px 46px; + text-decoration: none; +} + +.approve-button:hover { + background-color: #37b3b7; +} + +.icon-wrapper { + display: flex; + justify-content: center; + align-items: center; +} + +.approve-icon { + width: 40px; + aspect-ratio: 1; + object-fit: auto; + object-position: center; + fill: #fff; + filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.08)); +} + +.approve-text { + margin: auto 0; + color: var(--Green-5, #15647a); + font: 500 14px/193% Poppins, sans-serif; +} + +.decline-button { + border-style: none; + border-radius: 50px; + background-color: #faced7; + display: flex; + gap: 8px; + padding: 2px 50px; + text-decoration: none; +} + +.decline-button:hover { + background-color: #f7b8c5; +} + +.decline-icon-wrapper { + display: flex; + justify-content: center; + align-items: center; +} + +.decline-icon { + width: 40px; + aspect-ratio: 1; + object-fit: auto; + object-position: center; + fill: #fff; + filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.08)); +} + +.decline-text { + margin: auto 0; + color: #cc2a2a; + font: 500 14px/193% Poppins, sans-serif; +} diff --git a/public/asset/css/activity-report.css b/public/asset/css/activity-report.css new file mode 100644 index 0000000..0ccf69e --- /dev/null +++ b/public/asset/css/activity-report.css @@ -0,0 +1,202 @@ +h3, +h4, +h5 { + font-family: "Poppins"; +} + +.content { + padding-left: 250px; +} + +.activity-container { + border-radius: 20px; + box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + padding: 0 14px 0 0; + gap: 12px; + text-transform: capitalize; +} + +.summary-icon-wrapper { + justify-content: center; + align-items: center; + border-radius: 20px; + background-color: #fecd5a; + display: flex; + flex-direction: column; + font-size: 14px; + color: #1c1c30; + font-weight: 400; + white-space: nowrap; + text-align: center; + width: 90px; + height: 90px; + padding: 0 30px; +} + +.summary-icon { + object-fit: auto; + object-position: center; + width: 39px; + fill: #1c1c30; + align-self: center; +} + +.summary-text { + font-family: Poppins, sans-serif; + margin-top: 5px; +} + +.summary-details { + display: flex; + flex-direction: column; + margin: auto 0; +} + +.summary-count { + color: #efa800; + font: 600 28px Poppins, sans-serif; +} + +.summary-unit { + color: #384c7f; + font: 400 14px Poppins, sans-serif; +} + +.calories-container { + display: flex; + gap: 14px; +} + +.avatar-container { + background-color: #eaecff; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + width: 56px; + height: 56px; +} + +.calories-icon { + width: 28px; + height: 28px; + object-fit: cover; + object-position: center; +} + +.calories-info { + display: flex; + flex-direction: column; + flex-grow: 1; + flex-basis: 0; + width: fit-content; + margin: auto 0; +} + +.calories-header { + display: flex; + justify-content: space-between; + gap: 20px; + font-size: 16px; +} + +.calories-label { + color: #384c7f; + font-family: Poppins, sans-serif; + font-weight: 500; + font-size: medium; +} + +.calories-value { + color: #8296c5; + text-align: right; + font-size: 15px; + font-family: Poppins, sans-serif; + font-weight: 400; +} + +.calories-value .calories-total { + font-weight: 500; + font-size: 18px; + color: rgba(55, 179, 183, 1); +} + +.calories-progress { + border-radius: 16px; + background-color: #f8f2ff; + display: flex; + flex-direction: column; + height: 8px !important; +} + +.calories-progress-bar { + border-radius: 16px; + background-color: #51dbd3 !important; + height: 8px; +} + +.weight-card { + border-radius: 8px; + box-shadow: 0 5px 10px 0 rgba(234, 240, 246, 1); + background-color: #fff; + display: flex; + max-width: 360px; + gap: 20px; + font-weight: 500; + padding: 17px 16px; +} + +.weight-info { + display: flex; + flex-direction: column; + flex: 1; +} + +.date { + color: #8296c5; + font-family: "Poppins", sans-serif; +} + +.weight { + color: #384c7f; + margin-top: 7px; + font: 18px "Poppins", sans-serif; + font-weight: 500; +} + +.weight-details { + align-self: start; + display: flex; + flex-direction: column; + font-size: 14px; + flex: 1; +} + +.time { + color: #8296c5; + font-family: "Poppins", sans-serif; + font-weight: 400; + align-self: end; +} + +.weight-change { + display: flex; + margin-top: 9px; + gap: 9px; + color: #f5634a; + text-align: right; + justify-content: flex-end; +} + +.change-value { + font-family: "Poppins", sans-serif; + font-size: 16px; +} + +.change-icon { + width: 16px; + height: 16px; + align-self: start; +} diff --git a/public/asset/css/customer-result.css b/public/asset/css/customer-result.css new file mode 100644 index 0000000..a6b9e59 --- /dev/null +++ b/public/asset/css/customer-result.css @@ -0,0 +1,75 @@ +.container { + margin-top: 20px; +} + +.content { + padding-left: 250px; +} + +.main-content { + width: 100%; +} + +.consultation-section { + margin-top: 55px; + padding: 0 20px; +} + +.consultation-header { + color: #1c2541; + text-align: center; + font-size: 30px; + margin-bottom: 40px; +} + +.consultation-card { + background-color: #fff; + border-radius: 8px; +} + +.card-header { + justify-content: space-between; + align-items: center; + margin-bottom: 23px; +} + +.card-body { + display: flex; + justify-content: space-between; + align-items: center; + gap: 20px; +} +.doctor-info { + color: #414d55; + display: flex; + flex-direction: column; +} + +.doctor-name { + font-weight: 500; + font-size: 16px; +} + +.doctor-email { + margin-top: 10px; + font-weight: 400; + font-size: 12px; +} + +.btn .view-result { + background-color: #fff; + color: #2662f0; + text-align: center; + padding: 5px; + border-radius: 5px; + box-shadow: 0px 1px 8px rgba(20, 46, 110, 0.1); +} + +.modal-dialog { + max-width: 500px; + margin: 1.75rem auto; +} + +.modal-content { + padding: 20px; +} diff --git a/public/asset/css/dashboard.css b/public/asset/css/dashboard.css new file mode 100644 index 0000000..58d3ae9 --- /dev/null +++ b/public/asset/css/dashboard.css @@ -0,0 +1,907 @@ +body { + overflow-x: hidden; +} + +.vertical-line { + width: 2px; + height: 180px; + background-color: black; +} + +.customer-profile { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + text-align: center; + max-width: 324px; +} + +.profile-image { + width: 60px; + height: 60px; + border-radius: 50%; + background-color: #a4bbe9; +} + +.customer-name { + margin-top: 10px; + font: 500 18px/100% Poppins, sans-serif; + color: #384c7f; +} + +.customer-email { + font: 400 15px/100% Poppins, sans-serif; + color: #8296c5; +} + +.customer-stats { + display: flex; + justify-content: center; + align-self: stretch; + gap: 20px; + margin-top: 15px; + padding: 12px 25px; + border-radius: 16px; + background-color: #384c7f; + color: #fff; +} + +.stat-item { + display: flex; + flex-direction: column; + padding: 8px 0; + white-space: nowrap; +} + +.stat-label { + font: 300 12px/117% Poppins, sans-serif; +} + +.stat-value { + display: flex; + justify-content: center; + align-items: center; + gap: 5px; + margin-top: 10px; +} + +.stat-number { + font: 500 20px/100% Poppins, sans-serif; +} + +.stat-unit { + font: 300 12px/117% Poppins, sans-serif; +} + +.obesity-status { + width: 100px; + display: flex; + flex-direction: column; + justify-content: center; + margin: auto 0; +} + +.obesity-label { + font: 300 12px/117% Poppins, sans-serif; +} + +.obesity-value { + margin-top: 10px; + font: 500 16px/87.5% Poppins, sans-serif; +} + +.boxshadow { + border-radius: 16px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + gap: 20px; + /* justify-content: space-between; */ + padding: 25px 80px 25px 30px; +} + +.calories-container { + align-items: center; + display: flex; + gap: 10px; + justify-content: flex-start; + width: 100%; +} + +.icon-wrapper { + align-items: center; + + border-radius: 8px; + display: flex; + height: 46px; + justify-content: center; + margin: auto 0; + width: 46px; +} + +.icon-wrapper, +#calories { + background-color: #ffced4; +} + +.icon-wrapper, +#distance { + background-color: #c9ffde; +} + +.icon-wrapper, +#sleep { + background-color: #cee2ff; +} + +.calories-icon { + fill: #f96577; + object-fit: contain; + width: 24px; +} + +.calories-info { + display: flex; + flex-direction: column; +} + +.calories-label { + color: #8296c5; + font: 400 14px Poppins, sans-serif; + line-height: 12px; +} + +.calories-value { + color: #384c7f; + font: 500 17px Poppins, sans-serif; + line-height: 0; +} + +.activity-log { + display: flex; + flex-direction: column; + max-width: 680px; + font-size: 16px; + color: #384c7f; + font-weight: 500; + text-align: center; +} + +.activity-header { + display: flex; + justify-content: center; + gap: 40px; + padding: 18px 27px; + border-radius: 12px; + white-space: nowrap; +} + +@media (max-width: 991px) { + .activity-header { + flex-wrap: wrap; + padding: 0 20px; + white-space: initial; + } +} + +.header-date, +.header-activity, +.header-distance, +.header-duration { + font-family: Poppins, sans-serif; + width: 160px; +} + +.header-activity, +.header-distance, +.header-duration { + width: 120px; +} + +.activity-item { + display: flex; + justify-content: center; + gap: 40px; + padding: 18px 25px; + border-radius: 12px; + background-color: #fff; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); +} + +@media (max-width: 991px) { + .activity-item { + flex-wrap: wrap; + padding: 0 20px; + } +} + +.item-date, +.item-activity, +.item-distance, +.item-duration { + font-family: Poppins, sans-serif; + width: 160px; +} + +.item-activity, +.item-distance, +.item-duration { + max-width: 120px; +} + +.appointment-item { + display: flex; + flex-direction: column; + max-width: 335px; + font-size: 14px; +} + +.appointment-time { + display: flex; + gap: 10px; + padding-right: 20px; + color: #384c7f; + font-weight: 400; + line-height: 100%; +} + +.appointment-status { + width: 12px; + height: 12px; + border-radius: 50%; + background-color: #37b3b7; + align-self: start; +} + +.appointment-datetime { + font-family: Poppins, sans-serif; + font-size: 16px; +} + +.appointment-details { + display: flex; + gap: 14px; + width: 100%; + margin-top: 5px; +} + +.appointment-connector { + margin: -4px 0 0 5px; + border: 1px dashed #a4bbe9; + height: 120px; +} + +.doctor-info { + display: flex; + flex-direction: column; + align-items: start; + flex-grow: 1; + flex-basis: 0; + width: auto; + margin: auto 0; + padding: 10px 80px 10px 16px; + border: 1px solid #a4bbe9; + border-radius: 15px; +} + +.doctor-name { + color: #384c7f; + font-family: Poppins, sans-serif; + font-weight: 500; +} + +.hospital-name { + color: #8296c5; + font-family: Poppins, sans-serif; + font-weight: 400; + line-height: 5px; +} + +.content{ + margin-top: 20px; + margin-left: 100px; +} + +.calories-description { + display: block; + font-size: 0.8em; + color: #666; + margin-top: 5px; +} + +body{ + margin-top:20px; + background:#f8f8f8 +} + +.container-notification { + background-color: #ffffff; + border-radius: 6px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Efect shadow */ + padding: 10px; + width: 45px; + height: 45px; + display: inline-flex; + align-items: center; + justify-content: flex-end; +} +.container-notification a { + text-decoration: none; /* Menghapus dekorasi hyperlink */ + color: #8296c5; /* Warna teks */ +} +.container-notification a:hover { + color: #6fffe9; /* Warna teks saat dihover */ +} +.containerContent { + background-color: #ffffff; + border-radius: 6px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Efect shadow */ + width: 250px; + height: 150px; + /* margin-left: 30px; + padding: 10px; */ + display: inline-flex; + align-items: center; +} + +.full-width-container { + width: 100%; + padding: 0; +} +.containerContent a { + text-decoration: none; /* Menghapus dekorasi hyperlink */ + color: #8296c5; /* Warna teks */ +} +.containeritem { + background-color: #ffffff; + border-radius: 6px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Efect shadow */ + margin-left: 30px; + padding: 10px; + display: inline-flex; + align-items: center; + width: calc(100% - 120px); +} +/* Styling untuk item-item */ +.item { + padding-left: 265px; + padding-bottom: 50px; +} + +.main-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 80%; + margin-left: 20px; +} + +@media (max-width: 991px) { + .main-column { + width: 100%; + } +} + +.main-content { + display: flex; + flex-direction: column; + align-self: stretch; + margin: auto 0; +} + +@media (max-width: 991px) { + .main-content { + max-width: 100%; + margin-top: 40px; + } +} + +.payment-section { + display: flex; + gap: 20px; +} + +@media (max-width: 991px) { + .payment-section { + flex-direction: column; + align-items: stretch; + gap: 0px; + } +} + +.payment-card { + display: flex; + flex-direction: column; + line-height: normal; + width: 50%; +} + +@media (max-width: 991px) { + .payment-card { + width: 100%; + } +} + +.earning-card { + align-items: start; + border-radius: 4.444px; + border: 1px solid rgba(243, 244, 246, 1); + background-color: #6FFFE9; + display: flex; + flex-direction: column; + width: 100%; + padding: 18px 80px 31px 14px; +} + +@media (max-width: 991px) { + .earning-card { + margin-top: 17px; + padding-right: 20px; + } +} + +.earning-title { + color: var(--text-color-80-opacity, #0B132B); + letter-spacing: 0.14px; + font: 14px Outfit, sans-serif; +} + +.earning-amount { + color: var(--success-green-100, #0B132B); + margin-top: 11px; + font: 500 20px Outfit, sans-serif; +} + +.earning-date { + color: var(--Inactive-State-Color, #0B132B); + letter-spacing: 0.09px; + margin-top: 11px; + font: 9px Outfit, sans-serif; +} + +.pending-card { + align-items: start; + border-radius: 4.444px; + border: 1px solid rgba(243, 244, 246, 1); + background-color: #0B132B; + display: flex; + flex-direction: column; + width: 100%; + padding: 18px 80px 31px 15px; +} + +@media (max-width: 991px) { + .pending-card { + margin-top: 17px; + padding-right: 20px; + } +} + +.card { + width: 100%; +} + +.card-body{ + width: 100%; +} +.card-full-width { + width: 100%; +} +.pending-title { + color: var(--text-color-80-opacity, #6FFFE9); + letter-spacing: 0.14px; + font: 14px Outfit, sans-serif; +} + +.pending-amount { + color: var(--success-green-100, #2662F0); + margin-top: 11px; + font: 500 20px Outfit, sans-serif; +} + +.pending-date { + color: var(--Inactive-State-Color,#6FFFE9); + letter-spacing: 0.09px; + margin-top: 11px; + font: 9px Outfit, sans-serif; +} + +.payment-title { + color: var(--Inactive-State-Color, rgba(73, 69, 79, 0.8)); + margin-top: 33px; + font: 500 20px Outfit, sans-serif; +} + +@media (max-width: 991px) { + .payment-title { + max-width: 100%; + } +} +.entry-accept { + display: inline-flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + font-family: Poppins, sans-serif; + border-radius: 50px; + color:#15647A; + background-color: #51DBD3; + height: 30px; + width: 80px; +} + +.entry-decline { + display: inline-flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + font-family: Poppins, sans-serif; + border-radius: 50px; + color:#CC2A2A; + background-color: #F7B8C5; + height: 30px; + width: 80px; +} + +.tab-container { + display: flex; + margin-top: 24px; + width: 595px; + gap: 17px; + font-size: 15px; + color: var(--text-color-80-opacity, rgba(34, 34, 34, 0.9)); + font-weight: 500; + letter-spacing: 0.15px; + white-space: nowrap; +} + +@media (max-width: 991px) { + .tab-container { + flex-wrap: wrap; + white-space: initial; + } +} + +.tab { + border-radius: 26.667px; + border: 1px solid rgba(65, 59, 137, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 15px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; + display: inline-block; + height: auto; + white-space: nowrap; +} + +.tab { + padding: 10px 15px; +} + +@media (max-width: 991px) { + .tab { + white-space: initial; + padding: 0 20px; + } +} + +.tab-small { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 23px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; +} + +@media (max-width: 991px) { + .tab-small { + white-space: initial; + padding: 0 20px; + } +} + +.tab-medium { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 28px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; + height: 50px; +} + +@media (max-width: 991px) { + .tab-medium { + white-space: initial; + padding: 0 20px; + } +} + +.tab-large { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 26px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; +} + +@media (max-width: 991px) { + .tab-large { + white-space: initial; + padding: 0 20px; + } +} + +.payment-history { + border-radius: 10.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + display: flex; + flex-direction: column; + font-size: 14px; + font-weight: 400; + padding: 0 28px 33px 0; + margin-top: 16px; + margin-bottom: 10px; + width: 1150px; +} + +@media (max-width: 991px) { + .payment-history { + max-width: 100%; + padding-right: 20px; + } +} + +.history-header, +.history-body { + display: grid; + grid-template-columns: repeat(6, 1fr); + gap: 20px; + align-items: center; + border-bottom: 1px solid rgba(206, 206, 206, 1); + padding: 0 20px; + box-sizing: border-box; +} + +.history-header { + letter-spacing: 0.14px; + padding-right: 68px; + width: 1150px; +} + +@media (max-width: 991px) { + .history-header { + flex-wrap: wrap; + padding-right: 20px; + } +} + +.history-column, +.history-entry { + padding: 20px 0; + text-align: center; + font-family: Outfit, sans-serif; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.history-column { + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + color: var(--Inactive-State-Color, rgba(73, 69, 79, 0.8)); +} + +.history-body { + color: rgba(73, 69, 79, 0.9); + white-space: nowrap; + letter-spacing: 0.14px; +} + +@media (max-width: 991px) { + .history-body { + white-space: initial; + grid-template-columns: 1fr; + text-align: left; + } +} + +.status-success { + color: green; +} + +.status-rejected { + color: red; +} + +.status-pending { + color: orange; +} + +.entry-detail, +.entry-pay{ + background-color: #f0f0f0; + border: none; + padding: 5px 10px; + cursor: pointer; +} + + + +.history-entry-actions { + display: flex; + justify-content: center; + gap: 10px; +} + +.history-entry { + flex: 1; + white-space: nowrap; + word-wrap: break-word; + letter-spacing: 0.14px; + padding: 20px 21px; +} + +@media (max-width: 991px) { + .history-entry { + white-space: initial; + padding: 0 20px; + } +} + +.entry-detail { + display: flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + margin-top: 15px; + font-family: Poppins, sans-serif; + border-radius: 50px; + color: white; + background-color: #0978f2; + height: 30px; + width: 150px; +} + +.entry-pay { + display: flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + margin-top: 15px; + font-family: Poppins, sans-serif; + border-radius: 50px; + color: white; + background-color: #0EAD69; + height: 30px; + width: 150px; +} + + + +@media (max-width: 991px) { + .entry-detail { + white-space: initial; + padding: 0 20px; + } +} + +.status-success { + color: #0ead69; +} + +.status-pending { + color: #0978f2; +} + +.status-rejected { + color: rgba(193, 11, 14, 0.8); +} + +.status-container { + display: flex; + flex-direction: column; + align-items: center; + font-size: 5px; + color: #fff; + font-weight: 500; + white-space: nowrap; + line-height: 540%; +} + +@media (max-width: 991px) { + .status-container { + white-space: initial; + } +} + +.rows-center { + display: flex; + align-items: center; + gap: 4px; +} + +.rows-center img { + border-radius: 3.368px; +} +.change-photo-span { + font-size: 12px; /* Adjust the font size as needed */ +} + +.card-container { + border-radius: 16px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + max-width: 350px; + flex-direction: column; + padding: 50px 22px 31px; +} +.content-wrapper { + display: flex; + align-items: start; + gap: 16px; + font-size: 14px; + color: #435179; + font-weight: 400; +} +.profile-pic { + background-color: #51dbd3; + border-radius: 50%; + width: 80px; + height: 80px; +} +.details { + display: flex; + margin-top: 20px; + flex-direction: column; + flex-grow: 1; + flex-basis: 0; + width: fit-content; +} +.hospital-name { + color: #1c2541; + font: 500 20px Poppins, sans-serif; +} +.date-info { + margin-top: 9px; + font: 16px Poppins, sans-serif; +} +.doctor-name, +.status, +.time-info { + font-family: Poppins, sans-serif; + margin-top: 16px; +} +.action-button { + justify-content: center; + border-radius: 10px; + background-color: #2662f0; + align-self: end; + margin-top: 25px; + color: #fff; + white-space: nowrap; + padding: 17px 39px; + font: 500 15px Poppins, sans-serif; +} + +.status{ + color: #2662f0; +} + diff --git a/public/asset/css/dashboardAdmin.css b/public/asset/css/dashboardAdmin.css new file mode 100644 index 0000000..0eaf3e1 --- /dev/null +++ b/public/asset/css/dashboardAdmin.css @@ -0,0 +1,733 @@ +body { + overflow-x: hidden; +} + +.admin-dashboard-title { + color: #1c2541; + text-align: center; + align-self: start; + font: 500 32px Poppins, sans-serif; +} +.patients-summary { + border-radius: 16px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + flex-direction: column; + padding: 30px 77px 30px 30px; +} + +@media (max-width: 991px) { + .patients-summary { + max-width: 100%; + padding: 0 20px; + } +} + +.content { + padding-left: 265px; + padding-right: 10px; +} + +.header{ + padding-left: 265px; + padding-right: 10px; +} + +.patients-summary-title { + color: #384c7f; + letter-spacing: 0.4px; + font: 500 20px Poppins, sans-serif; +} + +.patients-summary-content { + margin-top: 10px; +} + +.patients-summary-row { + display: flex; + gap: 20px; +} + +@media (max-width: 991px) { + .patients-summary-row { + flex-direction: column; + gap: 0; + } +} + +.patients-summary-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 24%; +} + +@media (max-width: 991px) { + .patients-summary-column { + width: 100%; + } +} + +.gender-stats { + display: flex; + margin-top: 22px; + flex-grow: 1; + gap: 10px; +} + +@media (max-width: 991px) { + .gender-stats { + margin-top: 40px; + } +} + +.gender-icons { + display: flex; + flex-direction: column; + flex: 1; +} + +.male-icon, +.female-icon { + display: flex; + justify-content: center; + align-items: center; + border-radius: 10px; + background-color: #cfddff; + width: 50px; + height: 50px; + padding: 0 19px; +} + +.female-icon { + margin-top: 21px; +} + +.gender-icon { + width: 12px; +} + +.gender-labels { + display: flex; + flex-direction: column; + font-size: 14px; + color: #8296c5; + font-weight: 400; + letter-spacing: 0.28px; + flex: 1; + margin: auto 0; +} + +@media (max-width: 991px) { + .gender-labels { + white-space: initial; + } +} + +.gender-label { + font-family: Poppins, sans-serif; +} + +.gender-count { + color: #1c2541; + letter-spacing: 0.4px; + margin-top: 13px; + font: 500 20px Poppins, sans-serif; +} + +.female-label { + margin-top: 33px; +} + +.bmi-stats { + display: flex; + margin-top: 23px; + flex-grow: 1; + gap: 10px; +} + +@media (max-width: 991px) { + .bmi-stats { + margin-top: 40px; + } +} + +.bmi-icons { + display: flex; + flex-direction: column; + flex: 1; +} + +.normal-icon, +.obesity-icon { + display: flex; + justify-content: center; + align-items: center; + border-radius: 10px; + width: 50px; + height: 50px; + padding: 0 15px; +} + +.normal-icon { + background-color: #b7ffe9; +} + +.obesity-icon { + background-color: #ffb8c9; + margin-top: 21px; +} + +.bmi-icon { + width: 20px; +} + +.bmi-labels { + display: flex; + flex-direction: column; + font-size: 14px; + color: #8296c5; + font-weight: 400; + letter-spacing: 0.28px; + flex: 1; + margin: auto 0; +} + +@media (max-width: 991px) { + .bmi-labels { + white-space: initial; + } +} + +.bmi-label { + font-family: Poppins, sans-serif; +} + +.bmi-count { + color: #1c2541; + letter-spacing: 0.4px; + margin-top: 13px; + font: 500 20px Poppins, sans-serif; +} + +.obesity-label { + margin-top: 32px; +} + +.obesity-count { + margin-top: 9px; +} + +.chart-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 52%; + margin-left: 20px; +} + +@media (max-width: 991px) { + .chart-column { + width: 100%; + } +} + +.chart-container { + display: flex; + flex-grow: 1; + gap: 17px; + font-size: 12px; + color: #6c7588; + font-weight: 400; + letter-spacing: 0.24px; +} + +@media (max-width: 991px) { + .chart-container { + margin-top: 40px; + white-space: initial; + } +} + +.chart-image { + width: 140px; + max-width: 100%; +} + +.chart-legend { + align-self: start; + display: flex; + flex-direction: column; + align-items: center; +} + +@media (max-width: 991px) { + .chart-legend { + white-space: initial; + } +} + +.chart-title { + color: #384c7f; + letter-spacing: 0.4px; + align-self: stretch; + font: 500 20px Poppins, sans-serif; + text-align: right; +} + +.legend-item { + display: flex; + width: 60px; + gap: 8px; + padding: 3px 0; +} + +.obesity-legend { + margin-top: 28px; +} + +.normal-legend { + margin-top: 5px; + padding: 4px 0; +} + +.legend-color { + border-radius: 50%; + width: 8px; + height: 8px; +} + +.obesity-color { + background-color: #f45d78; + align-self: start; +} + +.normal-color { + background-color: #5df4c7; +} + +.legend-label { + font-family: Nunito Sans, sans-serif; +} + +.doctor-total-card { + border-radius: 16px; + box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + flex-direction: column; + flex: 1; + padding: 20px; +} + +.doctor-total-header { + display: flex; + gap: 10px; + color: #8296c5; + font: 400 16px/150% Poppins, sans-serif; +} + +.doctor-total-icon { +width: 22px; +aspect-ratio: 1; +object-fit: auto; +object-position: center; +align-self: start; +} + +.doctor-total-label { + font-family: Poppins, sans-serif; +} + +.doctor-total-value { + margin-top: 10px; + color: #1c2541; + font: 500 30px/80% Poppins, sans-serif; + align-self: center; +} + + .user-roles { + border-radius: 20px; + background-color: #fff; + display: flex; + margin-top: 21px; + width: 100%; + flex-direction: column; + align-items: center; + padding: 25px 24px; + } + + @media (max-width: 991px) { + .user-roles { + padding: 0 20px; + } + } + + .user-roles-header { + align-self: stretch; + display: flex; + gap: 20px; + font-size: 16px; + color: #0c1e5b; + font-weight: 500; + letter-spacing: 0.32px; + justify-content: space-between; + padding: 0 2px; + } + + .user-roles-title { + font-family: Poppins, sans-serif; + } + + .user-roles-icon { + aspect-ratio: 3.57; + object-fit: auto; + object-position: center; + width: 18px; + margin: auto 0; + } + + .user-roles-image { + aspect-ratio: 1; + object-fit: auto; + object-position: center; + width: 140px; + margin-top: 28px; + max-width: 100%; + } + + .user-roles-legend { + display: flex; + margin-top: 28px; + gap: 20px; + font-size: 12px; + color: #6c7588; + font-weight: 400; + white-space: nowrap; + letter-spacing: 0.24px; + padding: 0 2px; + } + + @media (max-width: 991px) { + .user-roles-legend { + white-space: initial; + } + } + + .user-role { + display: flex; + gap: 8px; + flex: 1; + } + + @media (max-width: 991px) { + .user-role { + white-space: initial; + } + } + + .user-role-indicator { + border-radius: 50%; + width: 8px; + height: 8px; + } + + .user-role-indicator.patient { + background-color: #5df4c7; + } + + .user-role-indicator.admin { + background-color: #f45d78; + } + + .user-role-indicator.doctor { + background-color: #8db3ff; + } + + .user-role-label { + font-family: Nunito Sans, sans-serif; + } + + .patient-total-card { + border-radius: 16px; + box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + flex-direction: column; + flex: 1; + padding: 20px; + } + + .patient-total-header { + display: flex; + gap: 10px; + color: #8296c5; + font: 400 16px/150% Poppins, sans-serif; + } + + .patient-icon { + width: 24px; + aspect-ratio: 1; + object-fit: auto; + object-position: center; + } + + .patient-total-label { + font-family: Poppins, sans-serif; + } + + .patient-total-value { + margin-top: 10px; + color: #1c2541; + font: 500 30px/80% Poppins, sans-serif; + align-self: center; + } + + .notification-container { + border-radius: 20px; + background-color: #fff; + max-width: 830px; + margin-top: 17px; + padding: 25px 28px; + } + + @media (max-width: 991px) { + .notification-container { + padding: 0 20px; + } + } + + .notification-content { + display: flex; + gap: 20px; + } + + @media (max-width: 991px) { + .notification-content { + flex-direction: column; + align-items: stretch; + gap: 0; + } + } + + .notification-details { + display: flex; + flex-direction: column; + line-height: normal; + width: 80%; + margin-left: 0; + } + + @media (max-width: 991px) { + .notification-details { + width: 100%; + } + } + + .notification-header { + display: flex; + flex-grow: 1; + gap: 15px; + } + + @media (max-width: 991px) { + .notification-header { + margin-top: 40px; + } + } + + .notification-icon { + aspect-ratio: 1; + object-fit: auto; + object-position: center; + width: 70px; + } + + .notification-text { + align-self: start; + display: flex; + margin-top: 6px; + flex-direction: column; + flex-grow: 1; + flex-basis: 0; + width: fit-content; + } + + .notification-title { + color: #0c1e5b; + letter-spacing: 0.32px; + font: 600 16px Poppins, sans-serif; + } + + .notification-description { + color: #888fa7; + letter-spacing: 0.26px; + margin-top: 12px; + font: 400 13px/154% Poppins, sans-serif; + } + + .notification-action { + display: flex; + flex-direction: column; + line-height: normal; + width: 20%; + margin-left: 20px; + } + + @media (max-width: 991px) { + .notification-action { + width: 100%; + } + } + + .notification-button { + justify-content: center; + border-radius: 10px; + background-color: #384c7f; + align-self: stretch; + color: #fff; + text-align: center; + letter-spacing: 0.28px; + width: 100%; + margin: auto 0; + padding: 8px 16px; + font: 500 14px Poppins, sans-serif; + } + + @media (max-width: 991px) { + .notification-button { + margin-top: 40px; + } + } + + .image-notif{ + width:100%; + padding:15px; + } + + + .image { + width: 10%; + aspect-ratio: 1.14; + object-fit: cover; + object-position: center; + } + + .search-input { + width: 100%; + padding: 8px 12px; + border: 1px solid #ccc; + border-radius: 5px; + box-sizing: border-box; + font-size: 14px; + margin-bottom: 10px; +} + +.search-input::placeholder { + color: #aaa; +} + + + .container-patient{ + display: flex; + flex-grow: 1; + gap: 17px; + font-size: 12px; + background-color: #ffff; + color: #6c7588; + font-weight: 400; + letter-spacing: 0.24px; + padding: 25px 25px 25px 25px; + + } + + .container-patient { + display: flex; + justify-content: center; + align-items: center; + background-color: #f8f9fa; + padding: 20px; +} + +.data-table { + width: 100%; + max-width: 100%; /* Lebar maksimum tabel */ + background-color: #fff; + padding: 20px; + border-radius: 10px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Efek bayangan */ +} + +.table-header { + display: grid; + grid-template-columns: repeat(4, 250px) auto; /* Menggunakan grid untuk header */ + gap: 10px; + align-items: center; + font-weight: bold; +} + +.header-cell { + padding: 10px; + width: 100%; +} + +.table-image { + max-width: 100%; + height: auto; + margin-top: 20px; +} + +.table-footer { + display: flex; + justify-content: space-between; + align-items: center; + margin-top: 20px; + font-size: 14px; +} + +.pagination { + display: flex; + gap: 5px; +} + +.page-number, +.previous-button, +.next-button { + padding: 5px 10px; + border: 1px solid #ddd; + border-radius: 5px; + text-decoration: none; + color: #333; +} + +.active-page { + background-color: #007bff; + color: #fff; +} + + +.change-photo-span { + font-size: 12px; /* Adjust the font size as needed */ +} + +.card { + width: 100%; +} + +.card-body{ + width: 100%; +} +.card-full-width { + width: 100%; +} + +.content{ + margin-top: 20px; + margin-left: 100px; +} + + + + + diff --git a/public/asset/css/dashboardDoc.css b/public/asset/css/dashboardDoc.css new file mode 100644 index 0000000..67c8f63 --- /dev/null +++ b/public/asset/css/dashboardDoc.css @@ -0,0 +1,1495 @@ +.doctor-dashboard { + display: flex; + -width: 926px; + flex-direction: column; + padding: 0 20px; +} + +.dashboard-title { + color: #1c2541; + text-align: center; + align-self: center; + margin-left: 85px; + font: 500 32px Poppins, sans-serif; +} + +.dashboard-content { + margin-top: 36px; + width: 100%; +} + +@media (max-width: 991px) { + .dashboard-content { + max-width: 100%; + } +} + +.content-row { + display: flex; + gap: 10px; +} + +@media (max-width: 991px) { + .content-row { + flex-direction: column; + align-items: stretch; + gap: 0; + } +} + +.content-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 44%; + margin-left: 0; +} + +@media (max-width: 991px) { + .content-column { + width: 100%; + } +} + +.patient-stats { + justify-content: center; + border-radius: 20px; + box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07); + display: flex; + background-color: #fff; + width: 75%; + flex-grow: 0.5; + flex-direction: column; + white-space: nowrap; + margin: 0 auto; + padding: 38px 35px; +} + +@media (max-width: 991px) { + .patient-stats { + margin-top: 26px; + white-space: initial; + padding: 0 20px; + } +} + +.patient-icon { + aspect-ratio: 1; + object-fit: auto; + object-position: center; + width: 140px; + align-self: center; + max-width: 100%; +} + +.patient-stats-row { + justify-content: center; + display: flex; + margin-top: 30px; + gap: 15px; +} + +@media (max-width: 991px) { + .patient-stats-row { + white-space: initial; + } +} + +.patient-stat { + justify-content: center; + border-radius: 10px; + border: 1px solid rgba(229, 229, 229, 1); + display: flex; + flex-direction: column; + padding: 9px 14px; + align-items: center; + text-align: center; +} + +@media (max-width: 991px) { + .patient-stat { + white-space: initial; + } +} + +.patient-stat-value { + color: var(--Main-Colors-Secondary, #F5F5F5); + font: 600 18px/144% Inter, sans-serif; +} + +.patient-stat-label { + color: var(--Neutral-500, #F5F5F5); + margin-top: 4px; + font: 400 12px/133% Inter, sans-serif; +} + +.content-column-wide { + display: flex; + flex-direction: column; + line-height: normal; + width: 56%; + margin-left: 20px; +} + +@media (max-width: 991px) { + .content-column-wide { + width: 100%; + } +} + +.appointment-summary { + border-radius: 16px; + box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07); + background-color: #fff; + flex-grow: 1; + width: 100%; + padding: 37px 35px 80px; +} + +@media (max-width: 991px) { + .appointment-summary { + max-width: 100%; + margin-top: 26px; + padding: 0 20px; + } +} + +.appointment-summary-row { + display: flex; + gap: 20px; +} + +@media (max-width: 991px) { + .appointment-summary-row { + flex-direction: column; + align-items: stretch; + gap: 0; + } +} + +.appointment-summary-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 57%; + margin-left: 0; +} + +@media (max-width: 991px) { + .appointment-summary-column { + width: 100%; + } +} + +.appointment-summary-header { + display: flex; + gap: 0; +} + +@media (max-width: 991px) { + .appointment-summary-header { + margin-top: 40px; + } +} + +.appointment-summary-title { + color: var(--Dark-3, #384c7f); + letter-spacing: 0.4px; + font: 500 20px Poppins, sans-serif; +} + +.gender-stats { + display: flex; + margin-top: 24px; + gap: 10px; +} + +.appointment-stats { + display: flex; + margin-top: 24px; + gap: 10px; +} + +.gender-icon-container { + display: flex; + flex-direction: column; + flex: 0; +} +.apoinment-icon-container { + display: flex; + flex-direction: column; + flex: 1; +} + +.male-icon { + justify-content: center; + align-items: start; + border-radius: 10px; + background-color: #cfddff; + display: flex; + flex-direction: column; + padding: 15px 19px; +} + +@media (max-width: 991px) { + .male-icon { + padding-right: 20px; + } +} + +.gender-icon { + aspect-ratio: 0.6; + object-fit: auto; + object-position: center; + width: 12px; +} + +.female-icon { + justify-content: center; + align-items: start; + border-radius: 10px; + background-color: #cfddff; + display: flex; + margin-top: 25px; + flex-direction: column; + padding: 15px 19px; +} + +@media (max-width: 991px) { + .female-icon { + padding-right: 20px; + } +} + +.gender-stats-labels { + display: flex; + flex-direction: column; + font-size: 14px; + color: #8296c5; + font-weight: 400; + white-space: nowrap; + letter-spacing: 0.28px; + flex: 1; + margin: auto 0; +} + +@media (max-width: 991px) { + .gender-stats-labels { + white-space: initial; + } +} + +.gender-label { + font-family: Poppins, sans-serif; +} + +.gender-value { + color: #1c2541; + letter-spacing: 0.4px; + margin-top: 13px; + font: 500 20px Poppins, sans-serif; +} + +.appointment-icons { + align-self: end; + display: flex; + margin-top: 45px; + flex-direction: column; +} + +@media (max-width: 991px) { + .appointment-icons { + margin-top: 40px; + } +} + +.total-appointment-icon { + justify-content: center; + align-items: center; + border-radius: 10px; + background-color: #cfddff; + display: flex; + width: 50px; + height: 50px; + padding: 0 19px; +} + +.pending-appointment-icon { + justify-content: center; + align-items: center; + border-radius: 10px; + background-color: #cfddff; + display: flex; + margin-top: 21px; + width: 50px; + height: 50px; + padding: 0 19px; +} + +.appointment-summary-column-narrow { + display: flex; + flex-direction: column; + line-height: normal; + width: 43%; + margin-left: 20px; +} + +@media (max-width: 991px) { + .appointment-summary-column-narrow { + width: 100%; + } +} + +@media (max-width: 991px) { + .appointment-stats { + margin-top: 40px; + } +} + +.appoinment-stats-labels { + display: flex; + flex-direction: column; + font-size: 14px; + color: #8296c5; + font-weight: 400; + white-space: nowrap; + letter-spacing: 0.28px; + flex: 1; + margin: auto 0; +} + +.appointment-stat-value { + color: #1c2541; + letter-spacing: 0.4px; + margin-top: 6px; + font: 500 20px Poppins, sans-serif; +} + +.appointments-container { + border-radius: 15px; + border: 1px solid rgba(233, 241, 255, 1); + background-color: #fff; + display: flex; + width: 95%; + flex-direction: column; + padding: 39px 57px; + margin: 20px 30px 30px 55px; +} + +@media (max-width: 991px) { + .appointments-container { + padding: 0 20px; + } +} + +.appointments-header { + display: flex; + width: 100%; + gap: 20px; +} + +@media (max-width: 991px) { + .appointments-header { + max-width: 100%; + flex-wrap: wrap; + } +} + +.appointments-title { + color: var(--Dark-3, #384c7f); + flex-grow: 1; + flex-basis: auto; + font: 600 24px Poppins, sans-serif; +} + +.view-more-link { + align-self: start; + display: flex; + gap: 10px; + font-size: 17px; + color: var(--Green-2, #51dbd3); + font-weight: 500; + letter-spacing: -0.17px; +} + +.view-more-text { + font-family: Poppins, sans-serif; +} + +.arrow-icon { + width: 16px; + margin: auto 0; +} + +:root { + --Dark-2: #8296c5; + --Dark-4: #1c2541; +} + +.appointments-table-header { + display: flex; + margin-top: 29px; + gap: 20px; + font-size: 18px; + color: var(--Dark-4); + font-weight: 400; + white-space: nowrap; + letter-spacing: -0.2px; + justify-content: space-between; + padding: 12px 16px; +} + +.appointments-table-header > div { + flex: 1; + max-width: calc(25% - 20px); +} + +@media (max-width: 991px) { + .appointments-table-header { + flex-wrap: wrap; + white-space: initial; + } +} + +.header-name, +.header-location, +.header-date, +.header-time, +.header-status { + font-family: Poppins, sans-serif; +} + +.appointment-row { + align-items: center; + text-align: center; + border-radius: 12px; + border: 1px solid rgba(233, 241, 255, 1); + background-color: #f6faff; + display: flex; + flex-wrap: wrap; + margin-top: 20px; + gap: 20px; /* Adjust gap as necessary */ + font-size: 17px; + color: var(--Dark-2); + font-weight: 400; + letter-spacing: -0.17px; + padding: 12px 16px; + width: 100%; /* Ensure the row spans the full width */ +} + +.appointment-row > div { + flex: 1; + max-width: calc(25% - 10px); /* Adjust width and gap as necessary */ +} + +.patient-info { + align-self: stretch; + display: flex; + gap: 10px; +} + +.patient-avatar { + width: 38px; + aspect-ratio: 1; +} + +.patient-name { + font-family: Poppins, sans-serif; + margin: auto 0; +} + +.appointment-location, +.appointment-date, +.appointment-time { + font-family: Poppins, sans-serif; + align-self: stretch; + margin: auto 0; +} + +.appointment-status { + font-family: Poppins, sans-serif; + align-self: stretch; + margin: auto 0; +} + +.status-confirmed { + color: var(--Green-2, #51dbd3); +} + +.status-cancelled { + color: #ff2f3b; +} + +.search-container { + border-radius: 16px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + flex-direction: column; + font-size: 16px; + color: #384c7f; + font-weight: 400; + justify-content: center; + padding: 76px 42px; + width: 90%; + margin: 20px 0px 0px 100px; +} + +@media (max-width: 991px) { + .search-container { + padding: 0 20px; + } +} + +.search-input { + font-family: Poppins, sans-serif; + align-items: start; + border-radius: 50px; + border: 1px solid rgba(130, 150, 197, 1); + background-color: #fff; + justify-content: center; + padding: 20px 24px; +} + +@media (max-width: 991px) { + .search-input { + max-width: 100%; + padding: 0 20px; + } +} + +.appointment-card { + border-radius: 16px; + border: 1px solid rgba(169, 183, 205, 1); + background-color: #f6faff; + display: flex; + margin-top: 38px; + width: 100%; + gap: 20px; + font-size: 17px; + letter-spacing: -0.17px; + padding: 27px 60px 27px 12px; +} + +@media (max-width: 991px) { + .appointment-card { + max-width: 100%; + flex-wrap: wrap; + padding-right: 20px; + } +} + +.appointment-info { + align-self: stretch; + display: flex; + gap: 10px; +} + +@media (max-width: 991px) { + .appointment-info { + max-width: 100%; + flex-wrap: wrap; + } +} + +.profile-pic { + aspect-ratio: 1.11; + object-fit: cover; + object-position: center; + width: 42px; + align-self: stretch; +} + +.name { + font-family: Louis George Café, sans-serif; + align-self: stretch; + flex-grow: 1; + flex-basis: auto; + margin: auto 0; +} + +.status { + color: var(--Green-2, #51dbd3); + font-family: Open Sans, sans-serif; + font-weight: 400; + align-self: stretch; + margin: auto 0; +} + +.date { + font-family: Louis George Café, sans-serif; + align-self: stretch; + margin: auto 0; +} + +.time { + font-family: Louis George Café, sans-serif; + align-self: stretch; + margin: auto 0; +} + +.appointment-actions { + display: flex; + gap: 20px; + font-weight: 400; + white-space: nowrap; + justify-content: space-between; + margin: auto 0; +} + +@media (max-width: 991px) { + .appointment-actions { + white-space: initial; + } +} + +.decline-btn { + font-family: Open Sans, sans-serif; + border-radius: 10px; + background-color: rgba(255, 128, 174, 0.23); + color: #cc2a2a; + padding: 9px 24px; + border: none; + cursor: pointer; +} + +@media (max-width: 991px) { + .decline-btn { + white-space: initial; + padding: 0 20px; + } +} + +.confirm-btn { + font-family: Open Sans, sans-serif; + border-radius: 10px; + background-color: rgba(111, 255, 233, 0.23); + color: #40dbc1; + padding: 9px 17px; + border: none; + cursor: pointer; +} + +@media (max-width: 991px) { + .confirm-btn { + white-space: initial; + } +} + +.patient-acceptance-title { + color: #1c2541; + text-align: center; + align-self: center; + margin-left: 85px; + font: 500 32px Poppins, sans-serif; +} + +.schedule-heading { + color: #1c2541; + text-align: center; + align-self: center; + font: 500 32px Poppins, sans-serif; +} + +.appointments-header { + display: flex; + gap: 20px; + width: 100%; +} + +@media (max-width: 991px) { + .appointments-header { + flex-wrap: wrap; + max-width: 100%; + } +} + +.appointments-title { + color: #141414; + flex-basis: auto; + flex-grow: 1; + font: 600 24px Jost, sans-serif; + gap: 0px; +} + +.appointments-icons { + display: flex; + gap: 8px; +} + +.icon { + aspect-ratio: 0.79; + gap: 0px; + object-fit: auto; + object-position: center; + width: 19px; +} + +.table-header-name { + font-family: Jost, sans-serif; + gap: 0px; +} + +.table-header-row { + align-self: start; + display: flex; + gap: 20px; + justify-content: space-between; +} + +@media (max-width: 991px) { + .table-header-row { + flex-wrap: wrap; + max-width: 100%; + } +} + +.table-header-name, +.table-header-location, +.table-header-patient-id, +.table-header-date, +.table-header-time, +.table-header-status { + text-align: center; +} + +.appointment-details { + display: flex; + gap: 20px; + justify-content: space-between; + margin: auto 0; + white-space: nowrap; +} + +@media (max-width: 991px) { + .appointment-details { + flex-wrap: wrap; + max-width: 100%; + white-space: initial; + } +} + +.appointment-location { + color: var(--Green-2, #51dbd3); + font-family: Open Sans, sans-serif; + font-weight: 400; + gap: 0px; +} + +.appointment-patient-id, +.appointment-date, +.appointment-time { + font-family: Louis George Café, sans-serif; + gap: 0px; +} + +.appointment-status { + color: var(--Green-2, #51dbd3); + font-family: Louis George Café, sans-serif; + gap: 0px; +} + +.appointment-status-cancelled { + color: #ff2424; +} +.appointment-card { + border-radius: 20px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + align-items: start; + gap: 10px; + max-width: 600px; + min-width: 300px; +} + +.patient-avatar { + background-color: #a4bbe9; + border-radius: 50%; + width: 50px; + height: 50px; +} + +.content { + margin-top: 20px; + margin-left: 100px; +} + +.patient-info { + display: flex; + margin-top: 8px; + flex-direction: column; +} + +.patient-name { + color: #1c2541; + font: 500 16px/75% Poppins, sans-serif; +} + +.patient-email { + color: #8296c5; + margin-top: 2px; + font: 400 14px/86% Poppins, sans-serif; +} + +.appointment-details { + display: flex; + flex-direction: column; + max-width: 330px; + font-size: 14px; + color: #384c7f; + font-weight: 400; +} + +.location-info { + display: flex; + gap: 10px; +} + +.location-icon { + width: 18px; + fill: #384c7f; +} + +.location-text { + font-family: Poppins, sans-serif; + flex-grow: 1; + margin: auto 0; +} + +.date-time-info { + display: flex; + justify-content: space-between; + width: 100%; + margin-top: 8px; +} + +.date-info { + display: flex; + gap: 6px; + margin: auto -5px auto 0; +} + +.date-icon { + width: 20px; + stroke: #384c7f; +} + +.date-text { + font-family: Poppins, sans-serif; + margin: auto 0; +} + +.time-info { + display: flex; + gap: 9px; +} + +.time-icon { + width: 20px; + fill: #384c7f; +} + +.time-text { + font-family: Poppins, sans-serif; + margin: auto 0; +} + +.approve-button { + border-radius: 50px; + background-color: var(--Green-2, #51dbd3); + display: flex; + gap: 10px; + padding: 4px 20px; + text-decoration: none; +} + +.approve-button:hover { + background-color: #37b3b7; +} + +.icon-wrapper { + display: flex; + justify-content: center; + align-items: center; +} + +.approve-icon { + width: 40px; + aspect-ratio: 1; + object-fit: auto; + object-position: center; + fill: #fff; + filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.08)); +} + +.approve-text { + margin: auto 0; + color: var(--Green-5, #15647a); + font: 500 14px/193% Poppins, sans-serif; +} + +.decline-button { + border-radius: 50px; + background-color: #faced7; + display: flex; + gap: 5px; + padding: 4px 20px; + text-decoration: none; +} + +.decline-button:hover { + background-color: #f7b8c5; +} + +.decline-icon-wrapper { + display: flex; + justify-content: center; + align-items: center; +} + +.decline-icon { + width: 40px; + aspect-ratio: 1; + object-fit: auto; + object-position: center; + fill: #fff; + filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.08)); +} + +.decline-text { + margin: auto 0; + color: #cc2a2a; + font: 500 14px/193% Poppins, sans-serif; +} + +.container { + padding-right: 68px; + background-color: #f6f7ff; +} + +@media (max-width: 991px) { + .container { + padding-right: 20px; + } +} + +.flex-column { + display: flex; + flex-direction: column; + line-height: normal; +} + +.flex-row { + display: flex; + gap: 20px; +} + +@media (max-width: 991px) { + .link { + white-space: initial; + margin: 0 10px; + } +} + +.link-icon { + aspect-ratio: 1.06; + object-fit: cover; + width: 16px; +} + +.link-text { + font-family: Poppins, sans-serif; + flex-grow: 1; + margin: auto 0; +} + +.expander-icon { + aspect-ratio: 0.5; + object-fit: cover; + width: 4px; + margin: auto 0; +} + +.flex-row-space { + display: flex; + justify-content: space-between; + gap: 20px; +} + +.nav-icon-wrapper { + display: flex; + gap: 19px; +} + +.main-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 80%; + margin-left: 20px; +} + +@media (max-width: 991px) { + .main-column { + width: 100%; + } +} + +.main-content { + display: flex; + flex-direction: column; + align-self: stretch; + margin: auto 0; +} + +@media (max-width: 991px) { + .main-content { + max-width: 100%; + margin-top: 40px; + } +} + +.payment-section { + display: flex; + gap: 20px; +} + +@media (max-width: 991px) { + .payment-section { + flex-direction: column; + align-items: stretch; + gap: 0px; + } +} + +.payment-card { + display: flex; + flex-direction: column; + line-height: normal; + width: 50%; +} + +@media (max-width: 991px) { + .payment-card { + width: 100%; + } +} + +.earning-card { + align-items: start; + border-radius: 4.444px; + border: 1px solid rgba(243, 244, 246, 1); + background-color: #6fffe9; + display: flex; + flex-direction: column; + width: 100%; + padding: 18px 80px 31px 14px; +} + +@media (max-width: 991px) { + .earning-card { + margin-top: 17px; + padding-right: 20px; + } +} + +.earning-title { + color: var(--text-color-80-opacity, #0b132b); + letter-spacing: 0.14px; + font: 14px Outfit, sans-serif; +} + +.earning-amount { + color: var(--success-green-100, #0b132b); + margin-top: 11px; + font: 500 20px Outfit, sans-serif; +} + +.earning-date { + color: var(--Inactive-State-Color, #0b132b); + letter-spacing: 0.09px; + margin-top: 11px; + font: 9px Outfit, sans-serif; +} + +.pending-card { + align-items: start; + border-radius: 4.444px; + border: 1px solid rgba(243, 244, 246, 1); + background-color: #0b132b; + display: flex; + flex-direction: column; + width: 100%; + padding: 18px 80px 31px 15px; +} + +@media (max-width: 991px) { + .pending-card { + margin-top: 17px; + padding-right: 20px; + } +} + +.pending-title { + color: var(--text-color-80-opacity, #6fffe9); + letter-spacing: 0.14px; + font: 14px Outfit, sans-serif; +} + +.pending-amount { + color: var(--success-green-100, #2662f0); + margin-top: 11px; + font: 500 20px Outfit, sans-serif; +} + +.pending-date { + color: var(--Inactive-State-Color, #6fffe9); + letter-spacing: 0.09px; + margin-top: 11px; + font: 9px Outfit, sans-serif; +} + +.payment-title { + color: var(--Inactive-State-Color, rgba(73, 69, 79, 0.8)); + margin-top: 33px; + font: 500 20px Outfit, sans-serif; +} + +@media (max-width: 991px) { + .payment-title { + max-width: 100%; + } +} +.entry-accept { + display: inline-flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + font-family: Poppins, sans-serif; + border-radius: 50px; + color: #15647a; + background-color: #51dbd3; + height: 30px; + width: 80px; +} + +.entry-decline { + display: inline-flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + font-family: Poppins, sans-serif; + border-radius: 50px; + color: #cc2a2a; + background-color: #f7b8c5; + height: 30px; + width: 80px; +} + +.tab-container { + display: flex; + margin-top: 24px; + width: 595px; + gap: 17px; + font-size: 15px; + color: var(--text-color-80-opacity, rgba(34, 34, 34, 0.9)); + font-weight: 500; + letter-spacing: 0.15px; + white-space: nowrap; +} + +@media (max-width: 991px) { + .tab-container { + flex-wrap: wrap; + white-space: initial; + } +} + +.tab { + border-radius: 26.667px; + border: 1px solid rgba(65, 59, 137, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 15px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; + display: inline-block; + height: auto; + white-space: nowrap; +} + +.tab { + padding: 10px 15px; +} + +@media (max-width: 991px) { + .tab { + white-space: initial; + padding: 0 20px; + } +} + +.tab-small { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 23px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; +} + +@media (max-width: 991px) { + .tab-small { + white-space: initial; + padding: 0 20px; + } +} + +.tab-medium { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 28px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; + height: 50px; +} + +@media (max-width: 991px) { + .tab-medium { + white-space: initial; + padding: 0 20px; + } +} + +.tab-large { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 26px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; +} + +@media (max-width: 991px) { + .tab-large { + white-space: initial; + padding: 0 20px; + } +} + +.payment-history { + border-radius: 10.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + display: flex; + flex-direction: column; + font-size: 14px; + font-weight: 400; + padding: 0 28px 33px 0; + margin-top: 16px; + margin-bottom: 10px; + width: 1150px; +} + +@media (max-width: 991px) { + .payment-history { + max-width: 100%; + padding-right: 20px; + } +} + +.history-header, +.history-body { + display: grid; + grid-template-columns: repeat(6, 1fr); + gap: 20px; + align-items: center; + border-bottom: 1px solid rgba(206, 206, 206, 1); + padding: 0 20px; + box-sizing: border-box; +} + +.history-header { + letter-spacing: 0.14px; + padding-right: 68px; + width: 1150px; +} + +@media (max-width: 991px) { + .history-header { + flex-wrap: wrap; + padding-right: 20px; + } +} + +.history-column, +.history-entry { + padding: 20px 0; + text-align: center; + font-family: Outfit, sans-serif; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.history-column { + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + color: var(--Inactive-State-Color, rgba(73, 69, 79, 0.8)); +} + +.history-body { + color: rgba(73, 69, 79, 0.9); + white-space: nowrap; + letter-spacing: 0.14px; +} + +@media (max-width: 991px) { + .history-body { + white-space: initial; + grid-template-columns: 1fr; + text-align: left; + } +} + +.status-success { + color: green; +} + +.status-rejected { + color: red; +} + +.status-pending { + color: orange; +} + +.entry-detail, +.entry-accept, +.entry-decline { + background-color: #f0f0f0; + border: none; + padding: 5px 10px; + cursor: pointer; +} + +.entry-accept { + background-color: #51dbd3; + color: green; +} + +.entry-decline { + background-color: #f7b8c5; + color: red; +} + +.history-entry-actions { + display: flex; + justify-content: center; + gap: 10px; +} + +.history-entry { + flex: 1; + white-space: nowrap; + word-wrap: break-word; + letter-spacing: 0.14px; + padding: 20px 21px; +} + +@media (max-width: 991px) { + .history-entry { + white-space: initial; + padding: 0 20px; + } +} + +.entry-detail { + display: flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + margin-top: 15px; + font-family: Poppins, sans-serif; + border-radius: 50px; + color: white; + background-color: #0978f2; + height: 30px; + width: 150px; +} + +@media (max-width: 991px) { + .entry-detail { + white-space: initial; + padding: 0 20px; + } +} + +.status-success { + color: #0ead69; +} + +.status-pending { + color: #0978f2; +} + +.status-rejected { + color: rgba(193, 11, 14, 0.8); +} + +.status-container { + display: flex; + flex-direction: column; + align-items: center; + font-size: 5px; + color: #fff; + font-weight: 500; + white-space: nowrap; + line-height: 540%; +} + +@media (max-width: 991px) { + .status-container { + white-space: initial; + } +} + +.rows-center { + display: flex; + align-items: center; + gap: 4px; +} + +.rows-center img { + border-radius: 3.368px; +} +.change-photo-span { + font-size: 12px; /* Adjust the font size as needed */ +} +.card { + width: 100%; +} + +.card-body { + width: 100%; +} +.card-full-width { + width: 100%; +} + +.chart-container { + width: 200px; + height: 200px; + margin: auto; + } diff --git a/public/asset/css/doctor-recomendation.css b/public/asset/css/doctor-recomendation.css new file mode 100644 index 0000000..9d245cb --- /dev/null +++ b/public/asset/css/doctor-recomendation.css @@ -0,0 +1,42 @@ +body { + font-family: 'Poppins', sans-serif; + margin: 0; + padding: 0; + } + + .container { + padding-top: 20px; + display: flex; + justify-content: center; + } + + .content { + padding-left: 250px; + flex: 1; + max-width: 100%; + } + + .patient-list { + margin: 20px; + width: 100%; + } + + .list-group-item { + display: flex; + justify-content: space-between; + align-items: center; + } + + .btn-recommendation { + margin-right: 10px; + } + + .modal-title { + display: flex; + align-items: center; + } + + .modal-title span { + margin-right: 10px; + } + \ No newline at end of file diff --git a/public/asset/css/priv-policy.css b/public/asset/css/priv-policy.css new file mode 100644 index 0000000..39fa354 --- /dev/null +++ b/public/asset/css/priv-policy.css @@ -0,0 +1,4 @@ +.content{ + margin-top: 20px; + margin-left: 100px; +} \ No newline at end of file diff --git a/public/asset/css/styleguide.css b/public/asset/css/styleguide.css new file mode 100644 index 0000000..e69de29 diff --git a/public/asset/email.png b/public/asset/email.png new file mode 100644 index 0000000..8e64b34 Binary files /dev/null and b/public/asset/email.png differ diff --git a/public/asset/health care.png b/public/asset/health care.png new file mode 100644 index 0000000..1ffde09 Binary files /dev/null and b/public/asset/health care.png differ diff --git a/public/asset/main.css b/public/asset/main.css new file mode 100644 index 0000000..7ced978 --- /dev/null +++ b/public/asset/main.css @@ -0,0 +1,231 @@ +html, +body { + margin: 0; + padding: 0; + background-color: #f6f7ff !important; +} + +.sidebar { + height: 100%; + width: 250px; + background-color: #0b132b; + color: #8296c5; + float: left; + position: fixed; + z-index: 1; /* Stay on top */ + top: 0; /* Stay at the top */ +} + +.sidebar a { + color: #6fffe9; +} + +.sidebar a:hover { + color: white; +} + +.sidebar a:focus { + background-color: #1f1f1e; + border-radius: 12px; + padding: 10px; + color: #6fffe9; + font-weight: bold; +} + +.header-logo { + display: flex; + align-items: center; + justify-content: center; + height: 70px; + border-bottom: 1px solid #403d39; +} + +.dashboard { + display: flex; + align-items: center; + justify-content: center; +} +.btn-dashboard { + background-color: #6fffe9; + border: none; + flex-shrink: 0; + color: #0b132b; + border-radius: 8px; + padding: 8px; + padding-left: 60px; + padding-right: 60px; + margin-top: 20px; +} + +.btn-dashboard:hover { + background-color: #f6f7ff; + color: #252422; +} + +.btn-primary { + display: flex; + width: 150px; + height: 45px; + padding-top: 13px; + padding-bottom: 13px; + padding-left: 42px; + padding-right: 43px; + background: #384c7f !important; + border-radius: 50px !important; + justify-content: center; + align-items: center; + + color: white; +} + +.btn-primary:hover { + background: #546695 !important; +} + +.btn-logout { + display: flex; + width: 200px; + height: 40px; + justify-content: center; + align-items: center; + background: #cc2a2a; + border-radius: 6px; + color: #f6f7ff; + border: none; +} + +.btn-logout:hover { + background-color: white; + color: #252422; +} + +.logout { + display: flex; + justify-content: center; + text-decoration: none; +} + +.menu { + margin-top: 30px; + padding-left: 0.49px; + justify-content: flex-start; + align-items: center; + gap: 12.36px; + display: inline-flex; +} + +.menu aside { + width: 20px; + height: 1px; + border: 1px #6fffe9 solid; +} + +.menu h6 { + color: #6fffe9; + font-weight: 400; +} + +.submenu { + display: inline-flex; + justify-content: flex-start; + align-items: center; +} + +.submenu a { + text-decoration: none; + color: #8296c5; + margin-left: 10px; +} + +.submenu:hover { + color: #6fffe9; +} + +.form-label { + color: #1c2541; +} + +.content { + padding-left: 200px; /* Add some padding to the content area */ +} + +::placeholder { + color: #8296c5 !important; +} + +.user-table { + padding-left: 250px; +} + +.container { + display: flex; + justify-content: space-between; +} + +.header { + display: flex; + flex-direction: column; +} + +.event-form { + background-color: white; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + border-radius: 20px; +} + +.material-symbols-outlined { + font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24; + text-decoration: none; +} + +#delete-icon { + color: red; +} + +@media only screen and (max-width: 1200px) { + body { + overflow-x: hidden; + } + + .dashboard { + display: flex; + align-items: center; + justify-content: center; + } + + .sidebar { + min-width: 250px; + } +} + +@media only screen and (max-width: 800px) { + body { + overflow-x: hidden; + } + + .dashboard { + display: flex; + align-items: center; + justify-content: center; + } + + .btn-dashboard { + width: 100px; + height: auto; + padding-left: 10px; + padding-right: 10px; + margin-top: 20px; + } + + .sidebar { + min-width: 150px; + overflow-y: visible; + } + + .logout { + position: fixed; + height: 100%; + width: 100%; + text-align: center; + } +} diff --git a/public/asset/page1.jpg b/public/asset/page1.jpg new file mode 100644 index 0000000..66bed8f Binary files /dev/null and b/public/asset/page1.jpg differ diff --git a/public/asset/page2.jpg b/public/asset/page2.jpg new file mode 100644 index 0000000..41a9500 Binary files /dev/null and b/public/asset/page2.jpg differ diff --git a/public/asset/page3.jpg b/public/asset/page3.jpg new file mode 100644 index 0000000..3b4e33b Binary files /dev/null and b/public/asset/page3.jpg differ diff --git a/public/asset/page4.png b/public/asset/page4.png new file mode 100644 index 0000000..519d05b Binary files /dev/null and b/public/asset/page4.png differ diff --git a/public/asset/page5.png b/public/asset/page5.png new file mode 100644 index 0000000..e4708ad Binary files /dev/null and b/public/asset/page5.png differ diff --git a/public/asset/phone.png b/public/asset/phone.png new file mode 100644 index 0000000..84b485c Binary files /dev/null and b/public/asset/phone.png differ diff --git a/public/asset/png/distance.png b/public/asset/png/distance.png new file mode 100644 index 0000000..f84b37b Binary files /dev/null and b/public/asset/png/distance.png differ diff --git a/public/asset/png/duration.png b/public/asset/png/duration.png new file mode 100644 index 0000000..feae6c1 Binary files /dev/null and b/public/asset/png/duration.png differ diff --git a/public/asset/png/fire.png b/public/asset/png/fire.png new file mode 100644 index 0000000..2fd60ac Binary files /dev/null and b/public/asset/png/fire.png differ diff --git a/public/asset/png/logo.svg b/public/asset/png/logo.svg new file mode 100644 index 0000000..254c6e5 --- /dev/null +++ b/public/asset/png/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/asset/png/moon.png b/public/asset/png/moon.png new file mode 100644 index 0000000..c0604b2 Binary files /dev/null and b/public/asset/png/moon.png differ diff --git a/public/asset/png/thumbnail.png b/public/asset/png/thumbnail.png new file mode 100644 index 0000000..36c5dc0 Binary files /dev/null and b/public/asset/png/thumbnail.png differ diff --git a/public/asset/png/web.png b/public/asset/png/web.png new file mode 100644 index 0000000..b37b4d3 Binary files /dev/null and b/public/asset/png/web.png differ diff --git a/public/asset/svg/Lineshadow.svg b/public/asset/svg/Lineshadow.svg new file mode 100644 index 0000000..3f41140 --- /dev/null +++ b/public/asset/svg/Lineshadow.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/asset/svg/SPM.svg b/public/asset/svg/SPM.svg new file mode 100644 index 0000000..46e5ca9 --- /dev/null +++ b/public/asset/svg/SPM.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/asset/svg/approve-icon.svg b/public/asset/svg/approve-icon.svg new file mode 100644 index 0000000..9dada9c --- /dev/null +++ b/public/asset/svg/approve-icon.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/asset/svg/dashline.svg b/public/asset/svg/dashline.svg new file mode 100644 index 0000000..febf626 --- /dev/null +++ b/public/asset/svg/dashline.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/asset/svg/decline-icon.svg b/public/asset/svg/decline-icon.svg new file mode 100644 index 0000000..18d0a6a --- /dev/null +++ b/public/asset/svg/decline-icon.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/asset/svg/edit.svg b/public/asset/svg/edit.svg new file mode 100644 index 0000000..57b5ae9 --- /dev/null +++ b/public/asset/svg/edit.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/asset/svg/flame.svg b/public/asset/svg/flame.svg new file mode 100644 index 0000000..f027d00 --- /dev/null +++ b/public/asset/svg/flame.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/asset/svg/foot.svg b/public/asset/svg/foot.svg new file mode 100644 index 0000000..b760465 --- /dev/null +++ b/public/asset/svg/foot.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/asset/svg/line.svg b/public/asset/svg/line.svg new file mode 100644 index 0000000..763be20 --- /dev/null +++ b/public/asset/svg/line.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/asset/svg/location.svg b/public/asset/svg/location.svg new file mode 100644 index 0000000..008b52f --- /dev/null +++ b/public/asset/svg/location.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/asset/svg/logo-white.svg b/public/asset/svg/logo-white.svg new file mode 100644 index 0000000..d7455c8 --- /dev/null +++ b/public/asset/svg/logo-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/asset/svg/logo.svg b/public/asset/svg/logo.svg new file mode 100644 index 0000000..afcc343 --- /dev/null +++ b/public/asset/svg/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/asset/svg/moon.svg b/public/asset/svg/moon.svg new file mode 100644 index 0000000..a76f586 --- /dev/null +++ b/public/asset/svg/moon.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/asset/svg/next-arrow.svg b/public/asset/svg/next-arrow.svg new file mode 100644 index 0000000..e90b79c --- /dev/null +++ b/public/asset/svg/next-arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/asset/svg/sched.svg b/public/asset/svg/sched.svg new file mode 100644 index 0000000..f83fce4 --- /dev/null +++ b/public/asset/svg/sched.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/asset/svg/shoes.svg b/public/asset/svg/shoes.svg new file mode 100644 index 0000000..5af713b --- /dev/null +++ b/public/asset/svg/shoes.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/asset/svg/time.svg b/public/asset/svg/time.svg new file mode 100644 index 0000000..20085aa --- /dev/null +++ b/public/asset/svg/time.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/build/assets/app-BbS0F8uT.js b/public/build/assets/app-BbS0F8uT.js new file mode 100644 index 0000000..a7aff8b --- /dev/null +++ b/public/build/assets/app-BbS0F8uT.js @@ -0,0 +1,17 @@ +function li(e,t){return function(){return e.apply(t,arguments)}}const{toString:rc}=Object.prototype,{getPrototypeOf:Ln}=Object,Et=(e=>t=>{const n=rc.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),ae=e=>(e=e.toLowerCase(),t=>Et(t)===e),Tt=e=>t=>typeof t===e,{isArray:Ne}=Array,Ve=Tt("undefined");function ic(e){return e!==null&&!Ve(e)&&e.constructor!==null&&!Ve(e.constructor)&&Z(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const hi=ae("ArrayBuffer");function sc(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&hi(e.buffer),t}const oc=Tt("string"),Z=Tt("function"),fi=Tt("number"),At=e=>e!==null&&typeof e=="object",ac=e=>e===!0||e===!1,gt=e=>{if(Et(e)!=="object")return!1;const t=Ln(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},cc=ae("Date"),uc=ae("File"),lc=ae("Blob"),hc=ae("FileList"),fc=e=>At(e)&&Z(e.pipe),dc=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||Z(e.append)&&((t=Et(e))==="formdata"||t==="object"&&Z(e.toString)&&e.toString()==="[object FormData]"))},pc=ae("URLSearchParams"),gc=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Ye(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),Ne(e))for(r=0,s=e.length;r0;)if(s=n[r],t===s.toLowerCase())return s;return null}const pi=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,gi=e=>!Ve(e)&&e!==pi;function an(){const{caseless:e}=gi(this)&&this||{},t={},n=(r,s)=>{const o=e&&di(t,s)||s;gt(t[o])&>(r)?t[o]=an(t[o],r):gt(r)?t[o]=an({},r):Ne(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r(Ye(t,(s,o)=>{n&&Z(s)?e[o]=li(s,n):e[o]=s},{allOwnKeys:r}),e),_c=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),yc=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},vc=(e,t,n,r)=>{let s,o,u;const h={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)u=s[o],(!r||r(u,e,t))&&!h[u]&&(t[u]=e[u],h[u]=!0);e=n!==!1&&Ln(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},bc=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},wc=e=>{if(!e)return null;if(Ne(e))return e;let t=e.length;if(!fi(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Sc=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Ln(Uint8Array)),xc=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},Cc=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},kc=ae("HTMLFormElement"),Ec=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),Mr=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),Tc=ae("RegExp"),mi=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};Ye(n,(s,o)=>{let u;(u=t(s,o,e))!==!1&&(r[o]=u||s)}),Object.defineProperties(e,r)},Ac=e=>{mi(e,(t,n)=>{if(Z(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(Z(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Oc=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return Ne(e)?r(e):r(String(e).split(t)),n},Pc=()=>{},Rc=(e,t)=>(e=+e,Number.isFinite(e)?e:t),Yt="abcdefghijklmnopqrstuvwxyz",Dr="0123456789",_i={DIGIT:Dr,ALPHA:Yt,ALPHA_DIGIT:Yt+Yt.toUpperCase()+Dr},Lc=(e=16,t=_i.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function Ic(e){return!!(e&&Z(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const Nc=e=>{const t=new Array(10),n=(r,s)=>{if(At(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=Ne(r)?[]:{};return Ye(r,(u,h)=>{const d=n(u,s+1);!Ve(d)&&(o[h]=d)}),t[s]=void 0,o}}return r};return n(e,0)},jc=ae("AsyncFunction"),Mc=e=>e&&(At(e)||Z(e))&&Z(e.then)&&Z(e.catch),v={isArray:Ne,isArrayBuffer:hi,isBuffer:ic,isFormData:dc,isArrayBufferView:sc,isString:oc,isNumber:fi,isBoolean:ac,isObject:At,isPlainObject:gt,isUndefined:Ve,isDate:cc,isFile:uc,isBlob:lc,isRegExp:Tc,isFunction:Z,isStream:fc,isURLSearchParams:pc,isTypedArray:Sc,isFileList:hc,forEach:Ye,merge:an,extend:mc,trim:gc,stripBOM:_c,inherits:yc,toFlatObject:vc,kindOf:Et,kindOfTest:ae,endsWith:bc,toArray:wc,forEachEntry:xc,matchAll:Cc,isHTMLForm:kc,hasOwnProperty:Mr,hasOwnProp:Mr,reduceDescriptors:mi,freezeMethods:Ac,toObjectSet:Oc,toCamelCase:Ec,noop:Pc,toFiniteNumber:Rc,findKey:di,global:pi,isContextDefined:gi,ALPHABET:_i,generateString:Lc,isSpecCompliantForm:Ic,toJSONObject:Nc,isAsyncFn:jc,isThenable:Mc};function R(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s)}v.inherits(R,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:v.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const yi=R.prototype,vi={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{vi[e]={value:e}});Object.defineProperties(R,vi);Object.defineProperty(yi,"isAxiosError",{value:!0});R.from=(e,t,n,r,s,o)=>{const u=Object.create(yi);return v.toFlatObject(e,u,function(d){return d!==Error.prototype},h=>h!=="isAxiosError"),R.call(u,e.message,t,n,r,s),u.cause=e,u.name=e.name,o&&Object.assign(u,o),u};const Dc=null;function cn(e){return v.isPlainObject(e)||v.isArray(e)}function bi(e){return v.endsWith(e,"[]")?e.slice(0,-2):e}function Fr(e,t,n){return e?e.concat(t).map(function(s,o){return s=bi(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function Fc(e){return v.isArray(e)&&!e.some(cn)}const Uc=v.toFlatObject(v,{},null,function(t){return/^is[A-Z]/.test(t)});function Ot(e,t,n){if(!v.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=v.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(w,g){return!v.isUndefined(g[w])});const r=n.metaTokens,s=n.visitor||m,o=n.dots,u=n.indexes,d=(n.Blob||typeof Blob<"u"&&Blob)&&v.isSpecCompliantForm(t);if(!v.isFunction(s))throw new TypeError("visitor must be a function");function _(x){if(x===null)return"";if(v.isDate(x))return x.toISOString();if(!d&&v.isBlob(x))throw new R("Blob is not supported. Use a Buffer instead.");return v.isArrayBuffer(x)||v.isTypedArray(x)?d&&typeof Blob=="function"?new Blob([x]):Buffer.from(x):x}function m(x,w,g){let b=x;if(x&&!g&&typeof x=="object"){if(v.endsWith(w,"{}"))w=r?w:w.slice(0,-2),x=JSON.stringify(x);else if(v.isArray(x)&&Fc(x)||(v.isFileList(x)||v.endsWith(w,"[]"))&&(b=v.toArray(x)))return w=bi(w),b.forEach(function(A,I){!(v.isUndefined(A)||A===null)&&t.append(u===!0?Fr([w],I,o):u===null?w:w+"[]",_(A))}),!1}return cn(x)?!0:(t.append(Fr(g,w,o),_(x)),!1)}const p=[],S=Object.assign(Uc,{defaultVisitor:m,convertValue:_,isVisitable:cn});function E(x,w){if(!v.isUndefined(x)){if(p.indexOf(x)!==-1)throw Error("Circular reference detected in "+w.join("."));p.push(x),v.forEach(x,function(b,k){(!(v.isUndefined(b)||b===null)&&s.call(t,b,v.isString(k)?k.trim():k,w,S))===!0&&E(b,w?w.concat(k):[k])}),p.pop()}}if(!v.isObject(e))throw new TypeError("data must be an object");return E(e),t}function Ur(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function In(e,t){this._pairs=[],e&&Ot(e,this,t)}const wi=In.prototype;wi.append=function(t,n){this._pairs.push([t,n])};wi.toString=function(t){const n=t?function(r){return t.call(this,r,Ur)}:Ur;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function Bc(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Si(e,t,n){if(!t)return e;const r=n&&n.encode||Bc,s=n&&n.serialize;let o;if(s?o=s(t,n):o=v.isURLSearchParams(t)?t.toString():new In(t,n).toString(r),o){const u=e.indexOf("#");u!==-1&&(e=e.slice(0,u)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class Br{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){v.forEach(this.handlers,function(r){r!==null&&t(r)})}}const xi={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Hc=typeof URLSearchParams<"u"?URLSearchParams:In,qc=typeof FormData<"u"?FormData:null,zc=typeof Blob<"u"?Blob:null,$c={isBrowser:!0,classes:{URLSearchParams:Hc,FormData:qc,Blob:zc},protocols:["http","https","file","blob","url","data"]},Ci=typeof window<"u"&&typeof document<"u",Jc=(e=>Ci&&["ReactNative","NativeScript","NS"].indexOf(e)<0)(typeof navigator<"u"&&navigator.product),Wc=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",Kc=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Ci,hasStandardBrowserEnv:Jc,hasStandardBrowserWebWorkerEnv:Wc},Symbol.toStringTag,{value:"Module"})),oe={...Kc,...$c};function Xc(e,t){return Ot(e,new oe.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return oe.isNode&&v.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function Vc(e){return v.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function Gc(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r=n.length;return u=!u&&v.isArray(s)?s.length:u,d?(v.hasOwnProp(s,u)?s[u]=[s[u],r]:s[u]=r,!h):((!s[u]||!v.isObject(s[u]))&&(s[u]=[]),t(n,r,s[u],o)&&v.isArray(s[u])&&(s[u]=Gc(s[u])),!h)}if(v.isFormData(e)&&v.isFunction(e.entries)){const n={};return v.forEachEntry(e,(r,s)=>{t(Vc(r),s,n,0)}),n}return null}function Qc(e,t,n){if(v.isString(e))try{return(t||JSON.parse)(e),v.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const Nn={transitional:xi,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=v.isObject(t);if(o&&v.isHTMLForm(t)&&(t=new FormData(t)),v.isFormData(t))return s?JSON.stringify(ki(t)):t;if(v.isArrayBuffer(t)||v.isBuffer(t)||v.isStream(t)||v.isFile(t)||v.isBlob(t))return t;if(v.isArrayBufferView(t))return t.buffer;if(v.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let h;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return Xc(t,this.formSerializer).toString();if((h=v.isFileList(t))||r.indexOf("multipart/form-data")>-1){const d=this.env&&this.env.FormData;return Ot(h?{"files[]":t}:t,d&&new d,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Qc(t)):t}],transformResponse:[function(t){const n=this.transitional||Nn.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(t&&v.isString(t)&&(r&&!this.responseType||s)){const u=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(h){if(u)throw h.name==="SyntaxError"?R.from(h,R.ERR_BAD_RESPONSE,this,null,this.response):h}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:oe.classes.FormData,Blob:oe.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};v.forEach(["delete","get","head","post","put","patch"],e=>{Nn.headers[e]={}});const jn=Nn,Yc=v.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Zc=e=>{const t={};let n,r,s;return e&&e.split(` +`).forEach(function(u){s=u.indexOf(":"),n=u.substring(0,s).trim().toLowerCase(),r=u.substring(s+1).trim(),!(!n||t[n]&&Yc[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},Hr=Symbol("internals");function qe(e){return e&&String(e).trim().toLowerCase()}function mt(e){return e===!1||e==null?e:v.isArray(e)?e.map(mt):String(e)}function eu(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const tu=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function Zt(e,t,n,r,s){if(v.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!v.isString(t)){if(v.isString(r))return t.indexOf(r)!==-1;if(v.isRegExp(r))return r.test(t)}}function nu(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function ru(e,t){const n=v.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,u){return this[r].call(this,t,s,o,u)},configurable:!0})})}class Pt{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(h,d,_){const m=qe(d);if(!m)throw new Error("header name must be a non-empty string");const p=v.findKey(s,m);(!p||s[p]===void 0||_===!0||_===void 0&&s[p]!==!1)&&(s[p||d]=mt(h))}const u=(h,d)=>v.forEach(h,(_,m)=>o(_,m,d));return v.isPlainObject(t)||t instanceof this.constructor?u(t,n):v.isString(t)&&(t=t.trim())&&!tu(t)?u(Zc(t),n):t!=null&&o(n,t,r),this}get(t,n){if(t=qe(t),t){const r=v.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return eu(s);if(v.isFunction(n))return n.call(this,s,r);if(v.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=qe(t),t){const r=v.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||Zt(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(u){if(u=qe(u),u){const h=v.findKey(r,u);h&&(!n||Zt(r,r[h],h,n))&&(delete r[h],s=!0)}}return v.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||Zt(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return v.forEach(this,(s,o)=>{const u=v.findKey(r,o);if(u){n[u]=mt(s),delete n[o];return}const h=t?nu(o):String(o).trim();h!==o&&delete n[o],n[h]=mt(s),r[h]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return v.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&v.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[Hr]=this[Hr]={accessors:{}}).accessors,s=this.prototype;function o(u){const h=qe(u);r[h]||(ru(s,u),r[h]=!0)}return v.isArray(t)?t.forEach(o):o(t),this}}Pt.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);v.reduceDescriptors(Pt.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});v.freezeMethods(Pt);const he=Pt;function en(e,t){const n=this||jn,r=t||n,s=he.from(r.headers);let o=r.data;return v.forEach(e,function(h){o=h.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function Ei(e){return!!(e&&e.__CANCEL__)}function Ze(e,t,n){R.call(this,e??"canceled",R.ERR_CANCELED,t,n),this.name="CanceledError"}v.inherits(Ze,R,{__CANCEL__:!0});function iu(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new R("Request failed with status code "+n.status,[R.ERR_BAD_REQUEST,R.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const su=oe.hasStandardBrowserEnv?{write(e,t,n,r,s,o){const u=[e+"="+encodeURIComponent(t)];v.isNumber(n)&&u.push("expires="+new Date(n).toGMTString()),v.isString(r)&&u.push("path="+r),v.isString(s)&&u.push("domain="+s),o===!0&&u.push("secure"),document.cookie=u.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function ou(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function au(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function Ti(e,t){return e&&!ou(t)?au(e,t):t}const cu=oe.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function s(o){let u=o;return t&&(n.setAttribute("href",u),u=n.href),n.setAttribute("href",u),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(u){const h=v.isString(u)?s(u):u;return h.protocol===r.protocol&&h.host===r.host}}():function(){return function(){return!0}}();function uu(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function lu(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,u;return t=t!==void 0?t:1e3,function(d){const _=Date.now(),m=r[o];u||(u=_),n[s]=d,r[s]=_;let p=o,S=0;for(;p!==s;)S+=n[p++],p=p%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),_-u{const o=s.loaded,u=s.lengthComputable?s.total:void 0,h=o-n,d=r(h),_=o<=u;n=o;const m={loaded:o,total:u,progress:u?o/u:void 0,bytes:h,rate:d||void 0,estimated:d&&u&&_?(u-o)/d:void 0,event:s};m[t?"download":"upload"]=!0,e(m)}}const hu=typeof XMLHttpRequest<"u",fu=hu&&function(e){return new Promise(function(n,r){let s=e.data;const o=he.from(e.headers).normalize();let{responseType:u,withXSRFToken:h}=e,d;function _(){e.cancelToken&&e.cancelToken.unsubscribe(d),e.signal&&e.signal.removeEventListener("abort",d)}let m;if(v.isFormData(s)){if(oe.hasStandardBrowserEnv||oe.hasStandardBrowserWebWorkerEnv)o.setContentType(!1);else if((m=o.getContentType())!==!1){const[w,...g]=m?m.split(";").map(b=>b.trim()).filter(Boolean):[];o.setContentType([w||"multipart/form-data",...g].join("; "))}}let p=new XMLHttpRequest;if(e.auth){const w=e.auth.username||"",g=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";o.set("Authorization","Basic "+btoa(w+":"+g))}const S=Ti(e.baseURL,e.url);p.open(e.method.toUpperCase(),Si(S,e.params,e.paramsSerializer),!0),p.timeout=e.timeout;function E(){if(!p)return;const w=he.from("getAllResponseHeaders"in p&&p.getAllResponseHeaders()),b={data:!u||u==="text"||u==="json"?p.responseText:p.response,status:p.status,statusText:p.statusText,headers:w,config:e,request:p};iu(function(A){n(A),_()},function(A){r(A),_()},b),p=null}if("onloadend"in p?p.onloadend=E:p.onreadystatechange=function(){!p||p.readyState!==4||p.status===0&&!(p.responseURL&&p.responseURL.indexOf("file:")===0)||setTimeout(E)},p.onabort=function(){p&&(r(new R("Request aborted",R.ECONNABORTED,e,p)),p=null)},p.onerror=function(){r(new R("Network Error",R.ERR_NETWORK,e,p)),p=null},p.ontimeout=function(){let g=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const b=e.transitional||xi;e.timeoutErrorMessage&&(g=e.timeoutErrorMessage),r(new R(g,b.clarifyTimeoutError?R.ETIMEDOUT:R.ECONNABORTED,e,p)),p=null},oe.hasStandardBrowserEnv&&(h&&v.isFunction(h)&&(h=h(e)),h||h!==!1&&cu(S))){const w=e.xsrfHeaderName&&e.xsrfCookieName&&su.read(e.xsrfCookieName);w&&o.set(e.xsrfHeaderName,w)}s===void 0&&o.setContentType(null),"setRequestHeader"in p&&v.forEach(o.toJSON(),function(g,b){p.setRequestHeader(b,g)}),v.isUndefined(e.withCredentials)||(p.withCredentials=!!e.withCredentials),u&&u!=="json"&&(p.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&p.addEventListener("progress",qr(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&p.upload&&p.upload.addEventListener("progress",qr(e.onUploadProgress)),(e.cancelToken||e.signal)&&(d=w=>{p&&(r(!w||w.type?new Ze(null,e,p):w),p.abort(),p=null)},e.cancelToken&&e.cancelToken.subscribe(d),e.signal&&(e.signal.aborted?d():e.signal.addEventListener("abort",d)));const x=uu(S);if(x&&oe.protocols.indexOf(x)===-1){r(new R("Unsupported protocol "+x+":",R.ERR_BAD_REQUEST,e));return}p.send(s||null)})},un={http:Dc,xhr:fu};v.forEach(un,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const zr=e=>`- ${e}`,du=e=>v.isFunction(e)||e===null||e===!1,Ai={getAdapter:e=>{e=v.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o`adapter ${h} `+(d===!1?"is not supported by the environment":"is not available in the build"));let u=t?o.length>1?`since : +`+o.map(zr).join(` +`):" "+zr(o[0]):"as no adapter specified";throw new R("There is no suitable adapter to dispatch the request "+u,"ERR_NOT_SUPPORT")}return r},adapters:un};function tn(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Ze(null,e)}function $r(e){return tn(e),e.headers=he.from(e.headers),e.data=en.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),Ai.getAdapter(e.adapter||jn.adapter)(e).then(function(r){return tn(e),r.data=en.call(e,e.transformResponse,r),r.headers=he.from(r.headers),r},function(r){return Ei(r)||(tn(e),r&&r.response&&(r.response.data=en.call(e,e.transformResponse,r.response),r.response.headers=he.from(r.response.headers))),Promise.reject(r)})}const Jr=e=>e instanceof he?{...e}:e;function Re(e,t){t=t||{};const n={};function r(_,m,p){return v.isPlainObject(_)&&v.isPlainObject(m)?v.merge.call({caseless:p},_,m):v.isPlainObject(m)?v.merge({},m):v.isArray(m)?m.slice():m}function s(_,m,p){if(v.isUndefined(m)){if(!v.isUndefined(_))return r(void 0,_,p)}else return r(_,m,p)}function o(_,m){if(!v.isUndefined(m))return r(void 0,m)}function u(_,m){if(v.isUndefined(m)){if(!v.isUndefined(_))return r(void 0,_)}else return r(void 0,m)}function h(_,m,p){if(p in t)return r(_,m);if(p in e)return r(void 0,_)}const d={url:o,method:o,data:o,baseURL:u,transformRequest:u,transformResponse:u,paramsSerializer:u,timeout:u,timeoutMessage:u,withCredentials:u,withXSRFToken:u,adapter:u,responseType:u,xsrfCookieName:u,xsrfHeaderName:u,onUploadProgress:u,onDownloadProgress:u,decompress:u,maxContentLength:u,maxBodyLength:u,beforeRedirect:u,transport:u,httpAgent:u,httpsAgent:u,cancelToken:u,socketPath:u,responseEncoding:u,validateStatus:h,headers:(_,m)=>s(Jr(_),Jr(m),!0)};return v.forEach(Object.keys(Object.assign({},e,t)),function(m){const p=d[m]||s,S=p(e[m],t[m],m);v.isUndefined(S)&&p!==h||(n[m]=S)}),n}const Oi="1.6.8",Mn={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{Mn[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const Wr={};Mn.transitional=function(t,n,r){function s(o,u){return"[Axios v"+Oi+"] Transitional option '"+o+"'"+u+(r?". "+r:"")}return(o,u,h)=>{if(t===!1)throw new R(s(u," has been removed"+(n?" in "+n:"")),R.ERR_DEPRECATED);return n&&!Wr[u]&&(Wr[u]=!0,console.warn(s(u," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,u,h):!0}};function pu(e,t,n){if(typeof e!="object")throw new R("options must be an object",R.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],u=t[o];if(u){const h=e[o],d=h===void 0||u(h,o,e);if(d!==!0)throw new R("option "+o+" must be "+d,R.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new R("Unknown option "+o,R.ERR_BAD_OPTION)}}const ln={assertOptions:pu,validators:Mn},de=ln.validators;class bt{constructor(t){this.defaults=t,this.interceptors={request:new Br,response:new Br}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let s;Error.captureStackTrace?Error.captureStackTrace(s={}):s=new Error;const o=s.stack?s.stack.replace(/^.+\n/,""):"";r.stack?o&&!String(r.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(r.stack+=` +`+o):r.stack=o}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=Re(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&ln.assertOptions(r,{silentJSONParsing:de.transitional(de.boolean),forcedJSONParsing:de.transitional(de.boolean),clarifyTimeoutError:de.transitional(de.boolean)},!1),s!=null&&(v.isFunction(s)?n.paramsSerializer={serialize:s}:ln.assertOptions(s,{encode:de.function,serialize:de.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let u=o&&v.merge(o.common,o[n.method]);o&&v.forEach(["delete","get","head","post","put","patch","common"],x=>{delete o[x]}),n.headers=he.concat(u,o);const h=[];let d=!0;this.interceptors.request.forEach(function(w){typeof w.runWhen=="function"&&w.runWhen(n)===!1||(d=d&&w.synchronous,h.unshift(w.fulfilled,w.rejected))});const _=[];this.interceptors.response.forEach(function(w){_.push(w.fulfilled,w.rejected)});let m,p=0,S;if(!d){const x=[$r.bind(this),void 0];for(x.unshift.apply(x,h),x.push.apply(x,_),S=x.length,m=Promise.resolve(n);p{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const u=new Promise(h=>{r.subscribe(h),o=h}).then(s);return u.cancel=function(){r.unsubscribe(o)},u},t(function(o,u,h){r.reason||(r.reason=new Ze(o,u,h),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new Dn(function(s){t=s}),cancel:t}}}const gu=Dn;function mu(e){return function(n){return e.apply(null,n)}}function _u(e){return v.isObject(e)&&e.isAxiosError===!0}const hn={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(hn).forEach(([e,t])=>{hn[t]=e});const yu=hn;function Pi(e){const t=new _t(e),n=li(_t.prototype.request,t);return v.extend(n,_t.prototype,t,{allOwnKeys:!0}),v.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return Pi(Re(e,s))},n}const U=Pi(jn);U.Axios=_t;U.CanceledError=Ze;U.CancelToken=gu;U.isCancel=Ei;U.VERSION=Oi;U.toFormData=Ot;U.AxiosError=R;U.Cancel=U.CanceledError;U.all=function(t){return Promise.all(t)};U.spread=mu;U.isAxiosError=_u;U.mergeConfig=Re;U.AxiosHeaders=he;U.formToJSON=e=>ki(v.isHTMLForm(e)?new FormData(e):e);U.getAdapter=Ai.getAdapter;U.HttpStatusCode=yu;U.default=U;const vu=U;function fn(e){"@babel/helpers - typeof";return fn=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},fn(e)}function $(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Kr(e,t){for(var n=0;n"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function wu(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Su(e,t){if(t&&(typeof t=="object"||typeof t=="function"))return t;if(t!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return wu(e)}function Q(e){var t=bu();return function(){var r=wt(e),s;if(t){var o=wt(this).constructor;s=Reflect.construct(r,arguments,o)}else s=r.apply(this,arguments);return Su(this,s)}}var Fn=function(){function e(){$(this,e)}return J(e,[{key:"listenForWhisper",value:function(n,r){return this.listen(".client-"+n,r)}},{key:"notification",value:function(n){return this.listen(".Illuminate\\Notifications\\Events\\BroadcastNotificationCreated",n)}},{key:"stopListeningForWhisper",value:function(n,r){return this.stopListening(".client-"+n,r)}}]),e}(),Ri=function(){function e(t){$(this,e),this.namespace=t}return J(e,[{key:"format",value:function(n){return n.charAt(0)==="."||n.charAt(0)==="\\"?n.substr(1):(this.namespace&&(n=this.namespace+"."+n),n.replace(/\./g,"\\"))}},{key:"setNamespace",value:function(n){this.namespace=n}}]),e}(),Rt=function(e){G(n,e);var t=Q(n);function n(r,s,o){var u;return $(this,n),u=t.call(this),u.name=s,u.pusher=r,u.options=o,u.eventFormatter=new Ri(u.options.namespace),u.subscribe(),u}return J(n,[{key:"subscribe",value:function(){this.subscription=this.pusher.subscribe(this.name)}},{key:"unsubscribe",value:function(){this.pusher.unsubscribe(this.name)}},{key:"listen",value:function(s,o){return this.on(this.eventFormatter.format(s),o),this}},{key:"listenToAll",value:function(s){var o=this;return this.subscription.bind_global(function(u,h){if(!u.startsWith("pusher:")){var d=o.options.namespace.replace(/\./g,"\\"),_=u.startsWith(d)?u.substring(d.length+1):"."+u;s(_,h)}}),this}},{key:"stopListening",value:function(s,o){return o?this.subscription.unbind(this.eventFormatter.format(s),o):this.subscription.unbind(this.eventFormatter.format(s)),this}},{key:"stopListeningToAll",value:function(s){return s?this.subscription.unbind_global(s):this.subscription.unbind_global(),this}},{key:"subscribed",value:function(s){return this.on("pusher:subscription_succeeded",function(){s()}),this}},{key:"error",value:function(s){return this.on("pusher:subscription_error",function(o){s(o)}),this}},{key:"on",value:function(s,o){return this.subscription.bind(s,o),this}}]),n}(Fn),xu=function(e){G(n,e);var t=Q(n);function n(){return $(this,n),t.apply(this,arguments)}return J(n,[{key:"whisper",value:function(s,o){return this.pusher.channels.channels[this.name].trigger("client-".concat(s),o),this}}]),n}(Rt),Cu=function(e){G(n,e);var t=Q(n);function n(){return $(this,n),t.apply(this,arguments)}return J(n,[{key:"whisper",value:function(s,o){return this.pusher.channels.channels[this.name].trigger("client-".concat(s),o),this}}]),n}(Rt),ku=function(e){G(n,e);var t=Q(n);function n(){return $(this,n),t.apply(this,arguments)}return J(n,[{key:"here",value:function(s){return this.on("pusher:subscription_succeeded",function(o){s(Object.keys(o.members).map(function(u){return o.members[u]}))}),this}},{key:"joining",value:function(s){return this.on("pusher:member_added",function(o){s(o.info)}),this}},{key:"whisper",value:function(s,o){return this.pusher.channels.channels[this.name].trigger("client-".concat(s),o),this}},{key:"leaving",value:function(s){return this.on("pusher:member_removed",function(o){s(o.info)}),this}}]),n}(Rt),Li=function(e){G(n,e);var t=Q(n);function n(r,s,o){var u;return $(this,n),u=t.call(this),u.events={},u.listeners={},u.name=s,u.socket=r,u.options=o,u.eventFormatter=new Ri(u.options.namespace),u.subscribe(),u}return J(n,[{key:"subscribe",value:function(){this.socket.emit("subscribe",{channel:this.name,auth:this.options.auth||{}})}},{key:"unsubscribe",value:function(){this.unbind(),this.socket.emit("unsubscribe",{channel:this.name,auth:this.options.auth||{}})}},{key:"listen",value:function(s,o){return this.on(this.eventFormatter.format(s),o),this}},{key:"stopListening",value:function(s,o){return this.unbindEvent(this.eventFormatter.format(s),o),this}},{key:"subscribed",value:function(s){return this.on("connect",function(o){s(o)}),this}},{key:"error",value:function(s){return this}},{key:"on",value:function(s,o){var u=this;return this.listeners[s]=this.listeners[s]||[],this.events[s]||(this.events[s]=function(h,d){u.name===h&&u.listeners[s]&&u.listeners[s].forEach(function(_){return _(d)})},this.socket.on(s,this.events[s])),this.listeners[s].push(o),this}},{key:"unbind",value:function(){var s=this;Object.keys(this.events).forEach(function(o){s.unbindEvent(o)})}},{key:"unbindEvent",value:function(s,o){this.listeners[s]=this.listeners[s]||[],o&&(this.listeners[s]=this.listeners[s].filter(function(u){return u!==o})),(!o||this.listeners[s].length===0)&&(this.events[s]&&(this.socket.removeListener(s,this.events[s]),delete this.events[s]),delete this.listeners[s])}}]),n}(Fn),Ii=function(e){G(n,e);var t=Q(n);function n(){return $(this,n),t.apply(this,arguments)}return J(n,[{key:"whisper",value:function(s,o){return this.socket.emit("client event",{channel:this.name,event:"client-".concat(s),data:o}),this}}]),n}(Li),Eu=function(e){G(n,e);var t=Q(n);function n(){return $(this,n),t.apply(this,arguments)}return J(n,[{key:"here",value:function(s){return this.on("presence:subscribed",function(o){s(o.map(function(u){return u.user_info}))}),this}},{key:"joining",value:function(s){return this.on("presence:joining",function(o){return s(o.user_info)}),this}},{key:"whisper",value:function(s,o){return this.socket.emit("client event",{channel:this.name,event:"client-".concat(s),data:o}),this}},{key:"leaving",value:function(s){return this.on("presence:leaving",function(o){return s(o.user_info)}),this}}]),n}(Ii),St=function(e){G(n,e);var t=Q(n);function n(){return $(this,n),t.apply(this,arguments)}return J(n,[{key:"subscribe",value:function(){}},{key:"unsubscribe",value:function(){}},{key:"listen",value:function(s,o){return this}},{key:"listenToAll",value:function(s){return this}},{key:"stopListening",value:function(s,o){return this}},{key:"subscribed",value:function(s){return this}},{key:"error",value:function(s){return this}},{key:"on",value:function(s,o){return this}}]),n}(Fn),Xr=function(e){G(n,e);var t=Q(n);function n(){return $(this,n),t.apply(this,arguments)}return J(n,[{key:"whisper",value:function(s,o){return this}}]),n}(St),Tu=function(e){G(n,e);var t=Q(n);function n(){return $(this,n),t.apply(this,arguments)}return J(n,[{key:"here",value:function(s){return this}},{key:"joining",value:function(s){return this}},{key:"whisper",value:function(s,o){return this}},{key:"leaving",value:function(s){return this}}]),n}(St),Un=function(){function e(t){$(this,e),this._defaultOptions={auth:{headers:{}},authEndpoint:"/broadcasting/auth",userAuthentication:{endpoint:"/broadcasting/user-auth",headers:{}},broadcaster:"pusher",csrfToken:null,bearerToken:null,host:null,key:null,namespace:"App.Events"},this.setOptions(t),this.connect()}return J(e,[{key:"setOptions",value:function(n){this.options=Ge(this._defaultOptions,n);var r=this.csrfToken();return r&&(this.options.auth.headers["X-CSRF-TOKEN"]=r,this.options.userAuthentication.headers["X-CSRF-TOKEN"]=r),r=this.options.bearerToken,r&&(this.options.auth.headers.Authorization="Bearer "+r,this.options.userAuthentication.headers.Authorization="Bearer "+r),n}},{key:"csrfToken",value:function(){var n;return typeof window<"u"&&window.Laravel&&window.Laravel.csrfToken?window.Laravel.csrfToken:this.options.csrfToken?this.options.csrfToken:typeof document<"u"&&typeof document.querySelector=="function"&&(n=document.querySelector('meta[name="csrf-token"]'))?n.getAttribute("content"):null}}]),e}(),Vr=function(e){G(n,e);var t=Q(n);function n(){var r;return $(this,n),r=t.apply(this,arguments),r.channels={},r}return J(n,[{key:"connect",value:function(){typeof this.options.client<"u"?this.pusher=this.options.client:this.options.Pusher?this.pusher=new this.options.Pusher(this.options.key,this.options):this.pusher=new Pusher(this.options.key,this.options)}},{key:"signin",value:function(){this.pusher.signin()}},{key:"listen",value:function(s,o,u){return this.channel(s).listen(o,u)}},{key:"channel",value:function(s){return this.channels[s]||(this.channels[s]=new Rt(this.pusher,s,this.options)),this.channels[s]}},{key:"privateChannel",value:function(s){return this.channels["private-"+s]||(this.channels["private-"+s]=new xu(this.pusher,"private-"+s,this.options)),this.channels["private-"+s]}},{key:"encryptedPrivateChannel",value:function(s){return this.channels["private-encrypted-"+s]||(this.channels["private-encrypted-"+s]=new Cu(this.pusher,"private-encrypted-"+s,this.options)),this.channels["private-encrypted-"+s]}},{key:"presenceChannel",value:function(s){return this.channels["presence-"+s]||(this.channels["presence-"+s]=new ku(this.pusher,"presence-"+s,this.options)),this.channels["presence-"+s]}},{key:"leave",value:function(s){var o=this,u=[s,"private-"+s,"private-encrypted-"+s,"presence-"+s];u.forEach(function(h,d){o.leaveChannel(h)})}},{key:"leaveChannel",value:function(s){this.channels[s]&&(this.channels[s].unsubscribe(),delete this.channels[s])}},{key:"socketId",value:function(){return this.pusher.connection.socket_id}},{key:"disconnect",value:function(){this.pusher.disconnect()}}]),n}(Un),Au=function(e){G(n,e);var t=Q(n);function n(){var r;return $(this,n),r=t.apply(this,arguments),r.channels={},r}return J(n,[{key:"connect",value:function(){var s=this,o=this.getSocketIO();return this.socket=o(this.options.host,this.options),this.socket.on("reconnect",function(){Object.values(s.channels).forEach(function(u){u.subscribe()})}),this.socket}},{key:"getSocketIO",value:function(){if(typeof this.options.client<"u")return this.options.client;if(typeof io<"u")return io;throw new Error("Socket.io client not found. Should be globally available or passed via options.client")}},{key:"listen",value:function(s,o,u){return this.channel(s).listen(o,u)}},{key:"channel",value:function(s){return this.channels[s]||(this.channels[s]=new Li(this.socket,s,this.options)),this.channels[s]}},{key:"privateChannel",value:function(s){return this.channels["private-"+s]||(this.channels["private-"+s]=new Ii(this.socket,"private-"+s,this.options)),this.channels["private-"+s]}},{key:"presenceChannel",value:function(s){return this.channels["presence-"+s]||(this.channels["presence-"+s]=new Eu(this.socket,"presence-"+s,this.options)),this.channels["presence-"+s]}},{key:"leave",value:function(s){var o=this,u=[s,"private-"+s,"presence-"+s];u.forEach(function(h){o.leaveChannel(h)})}},{key:"leaveChannel",value:function(s){this.channels[s]&&(this.channels[s].unsubscribe(),delete this.channels[s])}},{key:"socketId",value:function(){return this.socket.id}},{key:"disconnect",value:function(){this.socket.disconnect()}}]),n}(Un),Ou=function(e){G(n,e);var t=Q(n);function n(){var r;return $(this,n),r=t.apply(this,arguments),r.channels={},r}return J(n,[{key:"connect",value:function(){}},{key:"listen",value:function(s,o,u){return new St}},{key:"channel",value:function(s){return new St}},{key:"privateChannel",value:function(s){return new Xr}},{key:"encryptedPrivateChannel",value:function(s){return new Xr}},{key:"presenceChannel",value:function(s){return new Tu}},{key:"leave",value:function(s){}},{key:"leaveChannel",value:function(s){}},{key:"socketId",value:function(){return"fake-socket-id"}},{key:"disconnect",value:function(){}}]),n}(Un),Pu=function(){function e(t){$(this,e),this.options=t,this.connect(),this.options.withoutInterceptors||this.registerInterceptors()}return J(e,[{key:"channel",value:function(n){return this.connector.channel(n)}},{key:"connect",value:function(){this.options.broadcaster=="reverb"?this.connector=new Vr(Ge(Ge({},this.options),{cluster:""})):this.options.broadcaster=="pusher"?this.connector=new Vr(this.options):this.options.broadcaster=="socket.io"?this.connector=new Au(this.options):this.options.broadcaster=="null"?this.connector=new Ou(this.options):typeof this.options.broadcaster=="function"&&(this.connector=new this.options.broadcaster(this.options))}},{key:"disconnect",value:function(){this.connector.disconnect()}},{key:"join",value:function(n){return this.connector.presenceChannel(n)}},{key:"leave",value:function(n){this.connector.leave(n)}},{key:"leaveChannel",value:function(n){this.connector.leaveChannel(n)}},{key:"leaveAllChannels",value:function(){for(var n in this.connector.channels)this.leaveChannel(n)}},{key:"listen",value:function(n,r,s){return this.connector.listen(n,r,s)}},{key:"private",value:function(n){return this.connector.privateChannel(n)}},{key:"encryptedPrivate",value:function(n){return this.connector.encryptedPrivateChannel(n)}},{key:"socketId",value:function(){return this.connector.socketId()}},{key:"registerInterceptors",value:function(){typeof Vue=="function"&&Vue.http&&this.registerVueRequestInterceptor(),typeof axios=="function"&&this.registerAxiosRequestInterceptor(),typeof jQuery=="function"&&this.registerjQueryAjaxSetup(),(typeof Turbo>"u"?"undefined":fn(Turbo))==="object"&&this.registerTurboRequestInterceptor()}},{key:"registerVueRequestInterceptor",value:function(){var n=this;Vue.http.interceptors.push(function(r,s){n.socketId()&&r.headers.set("X-Socket-ID",n.socketId()),s()})}},{key:"registerAxiosRequestInterceptor",value:function(){var n=this;axios.interceptors.request.use(function(r){return n.socketId()&&(r.headers["X-Socket-Id"]=n.socketId()),r})}},{key:"registerjQueryAjaxSetup",value:function(){var n=this;typeof jQuery.ajax<"u"&&jQuery.ajaxPrefilter(function(r,s,o){n.socketId()&&o.setRequestHeader("X-Socket-Id",n.socketId())})}},{key:"registerTurboRequestInterceptor",value:function(){var n=this;document.addEventListener("turbo:before-fetch-request",function(r){r.detail.fetchOptions.headers["X-Socket-Id"]=n.socketId()})}}]),e}();function Ru(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Ni={exports:{}};/*! + * Pusher JavaScript Library v8.4.0-rc2 + * https://pusher.com/ + * + * Copyright 2020, Pusher + * Released under the MIT licence. + */(function(e,t){(function(r,s){e.exports=s()})(window,function(){return function(n){var r={};function s(o){if(r[o])return r[o].exports;var u=r[o]={i:o,l:!1,exports:{}};return n[o].call(u.exports,u,u.exports,s),u.l=!0,u.exports}return s.m=n,s.c=r,s.d=function(o,u,h){s.o(o,u)||Object.defineProperty(o,u,{enumerable:!0,get:h})},s.r=function(o){typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(o,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(o,"__esModule",{value:!0})},s.t=function(o,u){if(u&1&&(o=s(o)),u&8||u&4&&typeof o=="object"&&o&&o.__esModule)return o;var h=Object.create(null);if(s.r(h),Object.defineProperty(h,"default",{enumerable:!0,value:o}),u&2&&typeof o!="string")for(var d in o)s.d(h,d,(function(_){return o[_]}).bind(null,d));return h},s.n=function(o){var u=o&&o.__esModule?function(){return o.default}:function(){return o};return s.d(u,"a",u),u},s.o=function(o,u){return Object.prototype.hasOwnProperty.call(o,u)},s.p="",s(s.s=2)}([function(n,r,s){var o=this&&this.__extends||function(){var w=function(g,b){return w=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(k,A){k.__proto__=A}||function(k,A){for(var I in A)A.hasOwnProperty(I)&&(k[I]=A[I])},w(g,b)};return function(g,b){w(g,b);function k(){this.constructor=g}g.prototype=b===null?Object.create(b):(k.prototype=b.prototype,new k)}}();Object.defineProperty(r,"__esModule",{value:!0});var u=256,h=function(){function w(g){g===void 0&&(g="="),this._paddingCharacter=g}return w.prototype.encodedLength=function(g){return this._paddingCharacter?(g+2)/3*4|0:(g*8+5)/6|0},w.prototype.encode=function(g){for(var b="",k=0;k>>3*6&63),b+=this._encodeByte(A>>>2*6&63),b+=this._encodeByte(A>>>1*6&63),b+=this._encodeByte(A>>>0*6&63)}var I=g.length-k;if(I>0){var A=g[k]<<16|(I===2?g[k+1]<<8:0);b+=this._encodeByte(A>>>3*6&63),b+=this._encodeByte(A>>>2*6&63),I===2?b+=this._encodeByte(A>>>1*6&63):b+=this._paddingCharacter||"",b+=this._paddingCharacter||""}return b},w.prototype.maxDecodedLength=function(g){return this._paddingCharacter?g/4*3|0:(g*6+7)/8|0},w.prototype.decodedLength=function(g){return this.maxDecodedLength(g.length-this._getPaddingLength(g))},w.prototype.decode=function(g){if(g.length===0)return new Uint8Array(0);for(var b=this._getPaddingLength(g),k=g.length-b,A=new Uint8Array(this.maxDecodedLength(k)),I=0,M=0,q=0,Y=0,X=0,ee=0,ie=0;M>>4,A[I++]=X<<4|ee>>>2,A[I++]=ee<<6|ie,q|=Y&u,q|=X&u,q|=ee&u,q|=ie&u;if(M>>4,q|=Y&u,q|=X&u),M>>2,q|=ee&u),M>>8&6,b+=51-g>>>8&-75,b+=61-g>>>8&-15,b+=62-g>>>8&3,String.fromCharCode(b)},w.prototype._decodeChar=function(g){var b=u;return b+=(42-g&g-44)>>>8&-u+g-43+62,b+=(46-g&g-48)>>>8&-u+g-47+63,b+=(47-g&g-58)>>>8&-u+g-48+52,b+=(64-g&g-91)>>>8&-u+g-65+0,b+=(96-g&g-123)>>>8&-u+g-97+26,b},w.prototype._getPaddingLength=function(g){var b=0;if(this._paddingCharacter){for(var k=g.length-1;k>=0&&g[k]===this._paddingCharacter;k--)b++;if(g.length<4||b>2)throw new Error("Base64Coder: incorrect padding")}return b},w}();r.Coder=h;var d=new h;function _(w){return d.encode(w)}r.encode=_;function m(w){return d.decode(w)}r.decode=m;var p=function(w){o(g,w);function g(){return w!==null&&w.apply(this,arguments)||this}return g.prototype._encodeByte=function(b){var k=b;return k+=65,k+=25-b>>>8&6,k+=51-b>>>8&-75,k+=61-b>>>8&-13,k+=62-b>>>8&49,String.fromCharCode(k)},g.prototype._decodeChar=function(b){var k=u;return k+=(44-b&b-46)>>>8&-u+b-45+62,k+=(94-b&b-96)>>>8&-u+b-95+63,k+=(47-b&b-58)>>>8&-u+b-48+52,k+=(64-b&b-91)>>>8&-u+b-65+0,k+=(96-b&b-123)>>>8&-u+b-97+26,k},g}(h);r.URLSafeCoder=p;var S=new p;function E(w){return S.encode(w)}r.encodeURLSafe=E;function x(w){return S.decode(w)}r.decodeURLSafe=x,r.encodedLength=function(w){return d.encodedLength(w)},r.maxDecodedLength=function(w){return d.maxDecodedLength(w)},r.decodedLength=function(w){return d.decodedLength(w)}},function(n,r,s){Object.defineProperty(r,"__esModule",{value:!0});var o="utf8: invalid string",u="utf8: invalid source encoding";function h(m){for(var p=new Uint8Array(d(m)),S=0,E=0;E>6,p[S++]=128|x&63):x<55296?(p[S++]=224|x>>12,p[S++]=128|x>>6&63,p[S++]=128|x&63):(E++,x=(x&1023)<<10,x|=m.charCodeAt(E)&1023,x+=65536,p[S++]=240|x>>18,p[S++]=128|x>>12&63,p[S++]=128|x>>6&63,p[S++]=128|x&63)}return p}r.encode=h;function d(m){for(var p=0,S=0;S=m.length-1)throw new Error(o);S++,p+=4}else throw new Error(o)}return p}r.encodedLength=d;function _(m){for(var p=[],S=0;S=m.length)throw new Error(u);var w=m[++S];if((w&192)!==128)throw new Error(u);E=(E&31)<<6|w&63,x=128}else if(E<240){if(S>=m.length-1)throw new Error(u);var w=m[++S],g=m[++S];if((w&192)!==128||(g&192)!==128)throw new Error(u);E=(E&15)<<12|(w&63)<<6|g&63,x=2048}else if(E<248){if(S>=m.length-2)throw new Error(u);var w=m[++S],g=m[++S],b=m[++S];if((w&192)!==128||(g&192)!==128||(b&192)!==128)throw new Error(u);E=(E&15)<<18|(w&63)<<12|(g&63)<<6|b&63,x=65536}else throw new Error(u);if(E=55296&&E<=57343)throw new Error(u);if(E>=65536){if(E>1114111)throw new Error(u);E-=65536,p.push(String.fromCharCode(55296|E>>10)),E=56320|E&1023}}p.push(String.fromCharCode(E))}return p.join("")}r.decode=_},function(n,r,s){n.exports=s(3).default},function(n,r,s){s.r(r);class o{constructor(i,a){this.lastId=0,this.prefix=i,this.name=a}create(i){this.lastId++;var a=this.lastId,l=this.prefix+a,f=this.name+"["+a+"]",y=!1,C=function(){y||(i.apply(null,arguments),y=!0)};return this[a]=C,{number:a,id:l,name:f,callback:C}}remove(i){delete this[i.number]}}var u=new o("_pusher_script_","Pusher.ScriptReceivers"),h={VERSION:"8.4.0-rc2",PROTOCOL:7,wsPort:80,wssPort:443,wsPath:"",httpHost:"sockjs.pusher.com",httpPort:80,httpsPort:443,httpPath:"/pusher",stats_host:"stats.pusher.com",authEndpoint:"/pusher/auth",authTransport:"ajax",activityTimeout:12e4,pongTimeout:3e4,unavailableTimeout:1e4,userAuthentication:{endpoint:"/pusher/user-auth",transport:"ajax"},channelAuthorization:{endpoint:"/pusher/auth",transport:"ajax"},cdn_http:"http://js.pusher.com",cdn_https:"https://js.pusher.com",dependency_suffix:""},d=h;class _{constructor(i){this.options=i,this.receivers=i.receivers||u,this.loading={}}load(i,a,l){var f=this;if(f.loading[i]&&f.loading[i].length>0)f.loading[i].push(l);else{f.loading[i]=[l];var y=P.createScriptRequest(f.getPath(i,a)),C=f.receivers.create(function(T){if(f.receivers.remove(C),f.loading[i]){var O=f.loading[i];delete f.loading[i];for(var L=function(F){F||y.cleanup()},N=0;N>>6)+Fe(128|i&63):Fe(224|i>>>12&15)+Fe(128|i>>>6&63)+Fe(128|i&63)},Xs=function(c){return c.replace(/[^\x00-\x7F]/g,Ks)},Vs=function(c){var i=[0,2,1][c.length%3],a=c.charCodeAt(0)<<16|(c.length>1?c.charCodeAt(1):0)<<8|(c.length>2?c.charCodeAt(2):0),l=[it.charAt(a>>>18),it.charAt(a>>>12&63),i>=2?"=":it.charAt(a>>>6&63),i>=1?"=":it.charAt(a&63)];return l.join("")},Gs=window.btoa||function(c){return c.replace(/[\s\S]{1,3}/g,Vs)};class Qs{constructor(i,a,l,f){this.clear=a,this.timer=i(()=>{this.timer&&(this.timer=f(this.timer))},l)}isRunning(){return this.timer!==null}ensureAborted(){this.timer&&(this.clear(this.timer),this.timer=null)}}var ar=Qs;function Ys(c){window.clearTimeout(c)}function Zs(c){window.clearInterval(c)}class ye extends ar{constructor(i,a){super(setTimeout,Ys,i,function(l){return a(),null})}}class eo extends ar{constructor(i,a){super(setInterval,Zs,i,function(l){return a(),l})}}var to={now(){return Date.now?Date.now():new Date().valueOf()},defer(c){return new ye(0,c)},method(c,...i){var a=Array.prototype.slice.call(arguments,1);return function(l){return l[c].apply(l,a.concat(arguments))}}},W=to;function V(c,...i){for(var a=0;a{window.console&&window.console.log&&window.console.log(i)}}debug(...i){this.log(this.globalLog,i)}warn(...i){this.log(this.globalLogWarn,i)}error(...i){this.log(this.globalLogError,i)}globalLogWarn(i){window.console&&window.console.warn?window.console.warn(i):this.globalLog(i)}globalLogError(i){window.console&&window.console.error?window.console.error(i):this.globalLogWarn(i)}log(i,...a){var l=no.apply(this,arguments);Vt.log?Vt.log(l):Vt.logToConsole&&i.bind(this)(l)}}var D=new ho,fo=function(c,i,a,l,f){(a.headers!==void 0||a.headersProvider!=null)&&D.warn(`To send headers with the ${l.toString()} request, you must use AJAX, rather than JSONP.`);var y=c.nextAuthCallbackID.toString();c.nextAuthCallbackID++;var C=c.getDocument(),T=C.createElement("script");c.auth_callbacks[y]=function(N){f(null,N)};var O="Pusher.auth_callbacks['"+y+"']";T.src=a.endpoint+"?callback="+encodeURIComponent(O)+"&"+i;var L=C.getElementsByTagName("head")[0]||C.documentElement;L.insertBefore(T,L.firstChild)},po=fo;class go{constructor(i){this.src=i}send(i){var a=this,l="Error loading "+a.src;a.script=document.createElement("script"),a.script.id=i.id,a.script.src=a.src,a.script.type="text/javascript",a.script.charset="UTF-8",a.script.addEventListener?(a.script.onerror=function(){i.callback(l)},a.script.onload=function(){i.callback(null)}):a.script.onreadystatechange=function(){(a.script.readyState==="loaded"||a.script.readyState==="complete")&&i.callback(null)},a.script.async===void 0&&document.attachEvent&&/opera/i.test(navigator.userAgent)?(a.errorScript=document.createElement("script"),a.errorScript.id=i.id+"_error",a.errorScript.text=i.name+"('"+l+"');",a.script.async=a.errorScript.async=!1):a.script.async=!0;var f=document.getElementsByTagName("head")[0];f.insertBefore(a.script,f.firstChild),a.errorScript&&f.insertBefore(a.errorScript,a.script.nextSibling)}cleanup(){this.script&&(this.script.onload=this.script.onerror=null,this.script.onreadystatechange=null),this.script&&this.script.parentNode&&this.script.parentNode.removeChild(this.script),this.errorScript&&this.errorScript.parentNode&&this.errorScript.parentNode.removeChild(this.errorScript),this.script=null,this.errorScript=null}}class mo{constructor(i,a){this.url=i,this.data=a}send(i){if(!this.request){var a=uo(this.data),l=this.url+"/"+i.number+"?"+a;this.request=P.createScriptRequest(l),this.request.send(i)}}cleanup(){this.request&&this.request.cleanup()}}var _o=function(c,i){return function(a,l){var f="http"+(i?"s":"")+"://",y=f+(c.host||c.options.host)+c.options.path,C=P.createJSONPRequest(y,a),T=P.ScriptReceivers.create(function(O,L){u.remove(T),C.cleanup(),L&&L.host&&(c.host=L.host),l&&l(O,L)});C.send(T)}},yo={name:"jsonp",getAgent:_o},vo=yo;function Ut(c,i,a){var l=c+(i.useTLS?"s":""),f=i.useTLS?i.hostTLS:i.hostNonTLS;return l+"://"+f+a}function Bt(c,i){var a="/app/"+c,l="?protocol="+d.PROTOCOL+"&client=js&version="+d.VERSION+(i?"&"+i:"");return a+l}var bo={getInitial:function(c,i){var a=(i.httpPath||"")+Bt(c,"flash=false");return Ut("ws",i,a)}},wo={getInitial:function(c,i){var a=(i.httpPath||"/pusher")+Bt(c);return Ut("http",i,a)}},So={getInitial:function(c,i){return Ut("http",i,i.httpPath||"/pusher")},getPath:function(c,i){return Bt(c)}};class xo{constructor(){this._callbacks={}}get(i){return this._callbacks[Ht(i)]}add(i,a,l){var f=Ht(i);this._callbacks[f]=this._callbacks[f]||[],this._callbacks[f].push({fn:a,context:l})}remove(i,a,l){if(!i&&!a&&!l){this._callbacks={};return}var f=i?[Ht(i)]:ur(this._callbacks);a||l?this.removeCallback(f,a,l):this.removeAllCallbacks(f)}removeCallback(i,a,l){Ue(i,function(f){this._callbacks[f]=hr(this._callbacks[f]||[],function(y){return a&&a!==y.fn||l&&l!==y.context}),this._callbacks[f].length===0&&delete this._callbacks[f]},this)}removeAllCallbacks(i){Ue(i,function(a){delete this._callbacks[a]},this)}}function Ht(c){return"_"+c}class ue{constructor(i){this.callbacks=new xo,this.global_callbacks=[],this.failThrough=i}bind(i,a,l){return this.callbacks.add(i,a,l),this}bind_global(i){return this.global_callbacks.push(i),this}unbind(i,a,l){return this.callbacks.remove(i,a,l),this}unbind_global(i){return i?(this.global_callbacks=hr(this.global_callbacks||[],a=>a!==i),this):(this.global_callbacks=[],this)}unbind_all(){return this.unbind(),this.unbind_global(),this}emit(i,a,l){for(var f=0;f0)for(var f=0;f{this.onError(a),this.changeState("closed")}),!1}return this.bindListeners(),D.debug("Connecting",{transport:this.name,url:i}),this.changeState("connecting"),!0}close(){return this.socket?(this.socket.close(),!0):!1}send(i){return this.state==="open"?(W.defer(()=>{this.socket&&this.socket.send(i)}),!0):!1}ping(){this.state==="open"&&this.supportsPing()&&this.socket.ping()}onOpen(){this.hooks.beforeOpen&&this.hooks.beforeOpen(this.socket,this.hooks.urls.getPath(this.key,this.options)),this.changeState("open"),this.socket.onopen=void 0}onError(i){this.emit("error",{type:"WebSocketError",error:i}),this.timeline.error(this.buildTimelineMessage({error:i.toString()}))}onClose(i){i?this.changeState("closed",{code:i.code,reason:i.reason,wasClean:i.wasClean}):this.changeState("closed"),this.unbindListeners(),this.socket=void 0}onMessage(i){this.emit("message",i)}onActivity(){this.emit("activity")}bindListeners(){this.socket.onopen=()=>{this.onOpen()},this.socket.onerror=i=>{this.onError(i)},this.socket.onclose=i=>{this.onClose(i)},this.socket.onmessage=i=>{this.onMessage(i)},this.supportsPing()&&(this.socket.onactivity=()=>{this.onActivity()})}unbindListeners(){this.socket&&(this.socket.onopen=void 0,this.socket.onerror=void 0,this.socket.onclose=void 0,this.socket.onmessage=void 0,this.supportsPing()&&(this.socket.onactivity=void 0))}changeState(i,a){this.state=i,this.timeline.info(this.buildTimelineMessage({state:i,params:a})),this.emit(i,a)}buildTimelineMessage(i){return V({cid:this.id},i)}}class Pe{constructor(i){this.hooks=i}isSupported(i){return this.hooks.isSupported(i)}createConnection(i,a,l,f){return new Co(this.hooks,i,a,l,f)}}var ko=new Pe({urls:bo,handlesActivityChecks:!1,supportsPing:!1,isInitialized:function(){return!!P.getWebSocketAPI()},isSupported:function(){return!!P.getWebSocketAPI()},getSocket:function(c){return P.createWebSocket(c)}}),pr={urls:wo,handlesActivityChecks:!1,supportsPing:!0,isInitialized:function(){return!0}},gr=V({getSocket:function(c){return P.HTTPFactory.createStreamingSocket(c)}},pr),mr=V({getSocket:function(c){return P.HTTPFactory.createPollingSocket(c)}},pr),_r={isSupported:function(){return P.isXHRSupported()}},Eo=new Pe(V({},gr,_r)),To=new Pe(V({},mr,_r)),Ao={ws:ko,xhr_streaming:Eo,xhr_polling:To},ot=Ao,Oo=new Pe({file:"sockjs",urls:So,handlesActivityChecks:!0,supportsPing:!1,isSupported:function(){return!0},isInitialized:function(){return window.SockJS!==void 0},getSocket:function(c,i){return new window.SockJS(c,null,{js_path:p.getPath("sockjs",{useTLS:i.useTLS}),ignore_null_origin:i.ignoreNullOrigin})},beforeOpen:function(c,i){c.send(JSON.stringify({path:i}))}}),yr={isSupported:function(c){var i=P.isXDRSupported(c.useTLS);return i}},Po=new Pe(V({},gr,yr)),Ro=new Pe(V({},mr,yr));ot.xdr_streaming=Po,ot.xdr_polling=Ro,ot.sockjs=Oo;var Lo=ot;class Io extends ue{constructor(){super();var i=this;window.addEventListener!==void 0&&(window.addEventListener("online",function(){i.emit("online")},!1),window.addEventListener("offline",function(){i.emit("offline")},!1))}isOnline(){return window.navigator.onLine===void 0?!0:window.navigator.onLine}}var No=new Io;class jo{constructor(i,a,l){this.manager=i,this.transport=a,this.minPingDelay=l.minPingDelay,this.maxPingDelay=l.maxPingDelay,this.pingDelay=void 0}createConnection(i,a,l,f){f=V({},f,{activityTimeout:this.pingDelay});var y=this.transport.createConnection(i,a,l,f),C=null,T=function(){y.unbind("open",T),y.bind("closed",O),C=W.now()},O=L=>{if(y.unbind("closed",O),L.code===1002||L.code===1003)this.manager.reportDeath();else if(!L.wasClean&&C){var N=W.now()-C;N<2*this.maxPingDelay&&(this.manager.reportDeath(),this.pingDelay=Math.max(N/2,this.minPingDelay))}};return y.bind("open",T),y}isSupported(i){return this.manager.isAlive()&&this.transport.isSupported(i)}}const vr={decodeMessage:function(c){try{var i=JSON.parse(c.data),a=i.data;if(typeof a=="string")try{a=JSON.parse(i.data)}catch{}var l={event:i.event,channel:i.channel,data:a};return i.user_id&&(l.user_id=i.user_id),l}catch(f){throw{type:"MessageParseError",error:f,data:c.data}}},encodeMessage:function(c){return JSON.stringify(c)},processHandshake:function(c){var i=vr.decodeMessage(c);if(i.event==="pusher:connection_established"){if(!i.data.activity_timeout)throw"No activity timeout specified in handshake";return{action:"connected",id:i.data.socket_id,activityTimeout:i.data.activity_timeout*1e3}}else{if(i.event==="pusher:error")return{action:this.getCloseAction(i.data),error:this.getCloseError(i.data)};throw"Invalid handshake"}},getCloseAction:function(c){return c.code<4e3?c.code>=1002&&c.code<=1004?"backoff":null:c.code===4e3?"tls_only":c.code<4100?"refused":c.code<4200?"backoff":c.code<4300?"retry":"refused"},getCloseError:function(c){return c.code!==1e3&&c.code!==1001?{type:"PusherError",data:{code:c.code,message:c.reason||c.message}}:null}};var ve=vr;class Mo extends ue{constructor(i,a){super(),this.id=i,this.transport=a,this.activityTimeout=a.activityTimeout,this.bindListeners()}handlesActivityChecks(){return this.transport.handlesActivityChecks()}send(i){return this.transport.send(i)}send_event(i,a,l){var f={event:i,data:a};return l&&(f.channel=l),D.debug("Event sent",f),this.send(ve.encodeMessage(f))}ping(){this.transport.supportsPing()?this.transport.ping():this.send_event("pusher:ping",{})}close(){this.transport.close()}bindListeners(){var i={message:l=>{var f;try{f=ve.decodeMessage(l)}catch(y){this.emit("error",{type:"MessageParseError",error:y,data:l.data})}if(f!==void 0){switch(D.debug("Event recd",f),f.event){case"pusher:error":this.emit("error",{type:"PusherError",data:f.data});break;case"pusher:ping":this.emit("ping");break;case"pusher:pong":this.emit("pong");break}this.emit("message",f)}},activity:()=>{this.emit("activity")},error:l=>{this.emit("error",l)},closed:l=>{a(),l&&l.code&&this.handleCloseEvent(l),this.transport=null,this.emit("closed")}},a=()=>{ce(i,(l,f)=>{this.transport.unbind(f,l)})};ce(i,(l,f)=>{this.transport.bind(f,l)})}handleCloseEvent(i){var a=ve.getCloseAction(i),l=ve.getCloseError(i);l&&this.emit("error",l),a&&this.emit(a,{action:a,error:l})}}class Do{constructor(i,a){this.transport=i,this.callback=a,this.bindListeners()}close(){this.unbindListeners(),this.transport.close()}bindListeners(){this.onMessage=i=>{this.unbindListeners();var a;try{a=ve.processHandshake(i)}catch(l){this.finish("error",{error:l}),this.transport.close();return}a.action==="connected"?this.finish("connected",{connection:new Mo(a.id,this.transport),activityTimeout:a.activityTimeout}):(this.finish(a.action,{error:a.error}),this.transport.close())},this.onClosed=i=>{this.unbindListeners();var a=ve.getCloseAction(i)||"backoff",l=ve.getCloseError(i);this.finish(a,{error:l})},this.transport.bind("message",this.onMessage),this.transport.bind("closed",this.onClosed)}unbindListeners(){this.transport.unbind("message",this.onMessage),this.transport.unbind("closed",this.onClosed)}finish(i,a){this.callback(V({transport:this.transport,action:i},a))}}class Fo{constructor(i,a){this.timeline=i,this.options=a||{}}send(i,a){this.timeline.isEmpty()||this.timeline.send(P.TimelineTransport.getAgent(this,i),a)}}class qt extends ue{constructor(i,a){super(function(l,f){D.debug("No callbacks on "+i+" for "+l)}),this.name=i,this.pusher=a,this.subscribed=!1,this.subscriptionPending=!1,this.subscriptionCancelled=!1}authorize(i,a){return a(null,{auth:""})}trigger(i,a){if(i.indexOf("client-")!==0)throw new g("Event '"+i+"' does not start with 'client-'");if(!this.subscribed){var l=x.buildLogSuffix("triggeringClientEvents");D.warn(`Client event triggered before channel 'subscription_succeeded' event . ${l}`)}return this.pusher.send_event(i,a,this.name)}disconnect(){this.subscribed=!1,this.subscriptionPending=!1}handleEvent(i){var a=i.event,l=i.data;if(a==="pusher_internal:subscription_succeeded")this.handleSubscriptionSucceededEvent(i);else if(a==="pusher_internal:subscription_count")this.handleSubscriptionCountEvent(i);else if(a.indexOf("pusher_internal:")!==0){var f={};this.emit(a,l,f)}}handleSubscriptionSucceededEvent(i){this.subscriptionPending=!1,this.subscribed=!0,this.subscriptionCancelled?this.pusher.unsubscribe(this.name):this.emit("pusher:subscription_succeeded",i.data)}handleSubscriptionCountEvent(i){i.data.subscription_count&&(this.subscriptionCount=i.data.subscription_count),this.emit("pusher:subscription_count",i.data)}subscribe(){this.subscribed||(this.subscriptionPending=!0,this.subscriptionCancelled=!1,this.authorize(this.pusher.connection.socket_id,(i,a)=>{i?(this.subscriptionPending=!1,D.error(i.toString()),this.emit("pusher:subscription_error",Object.assign({},{type:"AuthError",error:i.message},i instanceof X?{status:i.status}:{}))):this.pusher.send_event("pusher:subscribe",{auth:a.auth,channel_data:a.channel_data,channel:this.name})}))}unsubscribe(){this.subscribed=!1,this.pusher.send_event("pusher:unsubscribe",{channel:this.name})}cancelSubscription(){this.subscriptionCancelled=!0}reinstateSubscription(){this.subscriptionCancelled=!1}}class zt extends qt{authorize(i,a){return this.pusher.config.channelAuthorizer({channelName:this.name,socketId:i},a)}}class Uo{constructor(){this.reset()}get(i){return Object.prototype.hasOwnProperty.call(this.members,i)?{id:i,info:this.members[i]}:null}each(i){ce(this.members,(a,l)=>{i(this.get(l))})}setMyID(i){this.myID=i}onSubscription(i){this.members=i.presence.hash,this.count=i.presence.count,this.me=this.get(this.myID)}addMember(i){return this.get(i.user_id)===null&&this.count++,this.members[i.user_id]=i.user_info,this.get(i.user_id)}removeMember(i){var a=this.get(i.user_id);return a&&(delete this.members[i.user_id],this.count--),a}reset(){this.members={},this.count=0,this.myID=null,this.me=null}}var Bo=function(c,i,a,l){function f(y){return y instanceof a?y:new a(function(C){C(y)})}return new(a||(a=Promise))(function(y,C){function T(N){try{L(l.next(N))}catch(F){C(F)}}function O(N){try{L(l.throw(N))}catch(F){C(F)}}function L(N){N.done?y(N.value):f(N.value).then(T,O)}L((l=l.apply(c,i||[])).next())})};class Ho extends zt{constructor(i,a){super(i,a),this.members=new Uo}authorize(i,a){super.authorize(i,(l,f)=>Bo(this,void 0,void 0,function*(){if(!l)if(f=f,f.channel_data!=null){var y=JSON.parse(f.channel_data);this.members.setMyID(y.user_id)}else if(yield this.pusher.user.signinDonePromise,this.pusher.user.user_data!=null)this.members.setMyID(this.pusher.user.user_data.id);else{let C=x.buildLogSuffix("authorizationEndpoint");D.error(`Invalid auth response for channel '${this.name}', expected 'channel_data' field. ${C}, or the user should be signed in.`),a("Invalid auth response");return}a(l,f)}))}handleEvent(i){var a=i.event;if(a.indexOf("pusher_internal:")===0)this.handleInternalEvent(i);else{var l=i.data,f={};i.user_id&&(f.user_id=i.user_id),this.emit(a,l,f)}}handleInternalEvent(i){var a=i.event,l=i.data;switch(a){case"pusher_internal:subscription_succeeded":this.handleSubscriptionSucceededEvent(i);break;case"pusher_internal:subscription_count":this.handleSubscriptionCountEvent(i);break;case"pusher_internal:member_added":var f=this.members.addMember(l);this.emit("pusher:member_added",f);break;case"pusher_internal:member_removed":var y=this.members.removeMember(l);y&&this.emit("pusher:member_removed",y);break}}handleSubscriptionSucceededEvent(i){this.subscriptionPending=!1,this.subscribed=!0,this.subscriptionCancelled?this.pusher.unsubscribe(this.name):(this.members.onSubscription(i.data),this.emit("pusher:subscription_succeeded",this.members))}disconnect(){this.members.reset(),super.disconnect()}}var qo=s(1),$t=s(0);class zo extends zt{constructor(i,a,l){super(i,a),this.key=null,this.nacl=l}authorize(i,a){super.authorize(i,(l,f)=>{if(l){a(l,f);return}let y=f.shared_secret;if(!y){a(new Error(`No shared_secret key in auth payload for encrypted channel: ${this.name}`),null);return}this.key=Object($t.decode)(y),delete f.shared_secret,a(null,f)})}trigger(i,a){throw new M("Client events are not currently supported for encrypted channels")}handleEvent(i){var a=i.event,l=i.data;if(a.indexOf("pusher_internal:")===0||a.indexOf("pusher:")===0){super.handleEvent(i);return}this.handleEncryptedEvent(a,l)}handleEncryptedEvent(i,a){if(!this.key){D.debug("Received encrypted event before key has been retrieved from the authEndpoint");return}if(!a.ciphertext||!a.nonce){D.error("Unexpected format for encrypted event, expected object with `ciphertext` and `nonce` fields, got: "+a);return}let l=Object($t.decode)(a.ciphertext);if(l.length{if(C){D.error(`Failed to make a request to the authEndpoint: ${T}. Unable to fetch new key, so dropping encrypted event`);return}if(y=this.nacl.secretbox.open(l,f,this.key),y===null){D.error("Failed to decrypt event with new key. Dropping encrypted event");return}this.emit(i,this.getDataToEmit(y))});return}this.emit(i,this.getDataToEmit(y))}getDataToEmit(i){let a=Object(qo.decode)(i);try{return JSON.parse(a)}catch{return a}}}class $o extends ue{constructor(i,a){super(),this.state="initialized",this.connection=null,this.key=i,this.options=a,this.timeline=this.options.timeline,this.usingTLS=this.options.useTLS,this.errorCallbacks=this.buildErrorCallbacks(),this.connectionCallbacks=this.buildConnectionCallbacks(this.errorCallbacks),this.handshakeCallbacks=this.buildHandshakeCallbacks(this.errorCallbacks);var l=P.getNetwork();l.bind("online",()=>{this.timeline.info({netinfo:"online"}),(this.state==="connecting"||this.state==="unavailable")&&this.retryIn(0)}),l.bind("offline",()=>{this.timeline.info({netinfo:"offline"}),this.connection&&this.sendActivityCheck()}),this.updateStrategy()}switchCluster(i){this.key=i,this.updateStrategy(),this.retryIn(0)}connect(){if(!(this.connection||this.runner)){if(!this.strategy.isSupported()){this.updateState("failed");return}this.updateState("connecting"),this.startConnecting(),this.setUnavailableTimer()}}send(i){return this.connection?this.connection.send(i):!1}send_event(i,a,l){return this.connection?this.connection.send_event(i,a,l):!1}disconnect(){this.disconnectInternally(),this.updateState("disconnected")}isUsingTLS(){return this.usingTLS}startConnecting(){var i=(a,l)=>{a?this.runner=this.strategy.connect(0,i):l.action==="error"?(this.emit("error",{type:"HandshakeError",error:l.error}),this.timeline.error({handshakeError:l.error})):(this.abortConnecting(),this.handshakeCallbacks[l.action](l))};this.runner=this.strategy.connect(0,i)}abortConnecting(){this.runner&&(this.runner.abort(),this.runner=null)}disconnectInternally(){if(this.abortConnecting(),this.clearRetryTimer(),this.clearUnavailableTimer(),this.connection){var i=this.abandonConnection();i.close()}}updateStrategy(){this.strategy=this.options.getStrategy({key:this.key,timeline:this.timeline,useTLS:this.usingTLS})}retryIn(i){this.timeline.info({action:"retry",delay:i}),i>0&&this.emit("connecting_in",Math.round(i/1e3)),this.retryTimer=new ye(i||0,()=>{this.disconnectInternally(),this.connect()})}clearRetryTimer(){this.retryTimer&&(this.retryTimer.ensureAborted(),this.retryTimer=null)}setUnavailableTimer(){this.unavailableTimer=new ye(this.options.unavailableTimeout,()=>{this.updateState("unavailable")})}clearUnavailableTimer(){this.unavailableTimer&&this.unavailableTimer.ensureAborted()}sendActivityCheck(){this.stopActivityCheck(),this.connection.ping(),this.activityTimer=new ye(this.options.pongTimeout,()=>{this.timeline.error({pong_timed_out:this.options.pongTimeout}),this.retryIn(0)})}resetActivityCheck(){this.stopActivityCheck(),this.connection&&!this.connection.handlesActivityChecks()&&(this.activityTimer=new ye(this.activityTimeout,()=>{this.sendActivityCheck()}))}stopActivityCheck(){this.activityTimer&&this.activityTimer.ensureAborted()}buildConnectionCallbacks(i){return V({},i,{message:a=>{this.resetActivityCheck(),this.emit("message",a)},ping:()=>{this.send_event("pusher:pong",{})},activity:()=>{this.resetActivityCheck()},error:a=>{this.emit("error",a)},closed:()=>{this.abandonConnection(),this.shouldRetry()&&this.retryIn(1e3)}})}buildHandshakeCallbacks(i){return V({},i,{connected:a=>{this.activityTimeout=Math.min(this.options.activityTimeout,a.activityTimeout,a.connection.activityTimeout||1/0),this.clearUnavailableTimer(),this.setConnection(a.connection),this.socket_id=this.connection.id,this.updateState("connected",{socket_id:this.socket_id})}})}buildErrorCallbacks(){let i=a=>l=>{l.error&&this.emit("error",{type:"WebSocketError",error:l.error}),a(l)};return{tls_only:i(()=>{this.usingTLS=!0,this.updateStrategy(),this.retryIn(0)}),refused:i(()=>{this.disconnect()}),backoff:i(()=>{this.retryIn(1e3)}),retry:i(()=>{this.retryIn(0)})}}setConnection(i){this.connection=i;for(var a in this.connectionCallbacks)this.connection.bind(a,this.connectionCallbacks[a]);this.resetActivityCheck()}abandonConnection(){if(this.connection){this.stopActivityCheck();for(var i in this.connectionCallbacks)this.connection.unbind(i,this.connectionCallbacks[i]);var a=this.connection;return this.connection=null,a}}updateState(i,a){var l=this.state;if(this.state=i,l!==i){var f=i;f==="connected"&&(f+=" with new socket ID "+a.socket_id),D.debug("State changed",l+" -> "+f),this.timeline.info({state:i,params:a}),this.emit("state_change",{previous:l,current:i}),this.emit(i,a)}}shouldRetry(){return this.state==="connecting"||this.state==="connected"}}class Jo{constructor(){this.channels={}}add(i,a){return this.channels[i]||(this.channels[i]=Wo(i,a)),this.channels[i]}all(){return ro(this.channels)}find(i){return this.channels[i]}remove(i){var a=this.channels[i];return delete this.channels[i],a}disconnect(){ce(this.channels,function(i){i.disconnect()})}}function Wo(c,i){if(c.indexOf("private-encrypted-")===0){if(i.config.nacl)return le.createEncryptedChannel(c,i,i.config.nacl);let a="Tried to subscribe to a private-encrypted- channel but no nacl implementation available",l=x.buildLogSuffix("encryptedChannelSupport");throw new M(`${a}. ${l}`)}else{if(c.indexOf("private-")===0)return le.createPrivateChannel(c,i);if(c.indexOf("presence-")===0)return le.createPresenceChannel(c,i);if(c.indexOf("#")===0)throw new b('Cannot create a channel with name "'+c+'".');return le.createChannel(c,i)}}var Ko={createChannels(){return new Jo},createConnectionManager(c,i){return new $o(c,i)},createChannel(c,i){return new qt(c,i)},createPrivateChannel(c,i){return new zt(c,i)},createPresenceChannel(c,i){return new Ho(c,i)},createEncryptedChannel(c,i,a){return new zo(c,i,a)},createTimelineSender(c,i){return new Fo(c,i)},createHandshake(c,i){return new Do(c,i)},createAssistantToTheTransportManager(c,i,a){return new jo(c,i,a)}},le=Ko;class br{constructor(i){this.options=i||{},this.livesLeft=this.options.lives||1/0}getAssistant(i){return le.createAssistantToTheTransportManager(this,i,{minPingDelay:this.options.minPingDelay,maxPingDelay:this.options.maxPingDelay})}isAlive(){return this.livesLeft>0}reportDeath(){this.livesLeft-=1}}class be{constructor(i,a){this.strategies=i,this.loop=!!a.loop,this.failFast=!!a.failFast,this.timeout=a.timeout,this.timeoutLimit=a.timeoutLimit}isSupported(){return dr(this.strategies,W.method("isSupported"))}connect(i,a){var l=this.strategies,f=0,y=this.timeout,C=null,T=(O,L)=>{L?a(null,L):(f=f+1,this.loop&&(f=f%l.length),f0&&(y=new ye(l.timeout,function(){C.abort(),f(!0)})),C=i.connect(a,function(T,O){T&&y&&y.isRunning()&&!l.failFast||(y&&y.ensureAborted(),f(T,O))}),{abort:function(){y&&y.ensureAborted(),C.abort()},forceMinPriority:function(T){C.forceMinPriority(T)}}}}class Jt{constructor(i){this.strategies=i}isSupported(){return dr(this.strategies,W.method("isSupported"))}connect(i,a){return Xo(this.strategies,i,function(l,f){return function(y,C){if(f[l].error=y,y){Vo(f)&&a(!0);return}Ue(f,function(T){T.forceMinPriority(C.transport.priority)}),a(null,C)}})}}function Xo(c,i,a){var l=lr(c,function(f,y,C,T){return f.connect(i,a(y,T))});return{abort:function(){Ue(l,Go)},forceMinPriority:function(f){Ue(l,function(y){y.forceMinPriority(f)})}}}function Vo(c){return ao(c,function(i){return!!i.error})}function Go(c){!c.error&&!c.aborted&&(c.abort(),c.aborted=!0)}class Qo{constructor(i,a,l){this.strategy=i,this.transports=a,this.ttl=l.ttl||1800*1e3,this.usingTLS=l.useTLS,this.timeline=l.timeline}isSupported(){return this.strategy.isSupported()}connect(i,a){var l=this.usingTLS,f=Yo(l),y=f&&f.cacheSkipCount?f.cacheSkipCount:0,C=[this.strategy];if(f&&f.timestamp+this.ttl>=W.now()){var T=this.transports[f.transport];T&&(["ws","wss"].includes(f.transport)||y>3?(this.timeline.info({cached:!0,transport:f.transport,latency:f.latency}),C.push(new be([T],{timeout:f.latency*2+1e3,failFast:!0}))):y++)}var O=W.now(),L=C.pop().connect(i,function N(F,ut){F?(wr(l),C.length>0?(O=W.now(),L=C.pop().connect(i,N)):a(F)):(Zo(l,ut.transport.name,W.now()-O,y),a(null,ut))});return{abort:function(){L.abort()},forceMinPriority:function(N){i=N,L&&L.forceMinPriority(N)}}}}function Wt(c){return"pusherTransport"+(c?"TLS":"NonTLS")}function Yo(c){var i=P.getLocalStorage();if(i)try{var a=i[Wt(c)];if(a)return JSON.parse(a)}catch{wr(c)}return null}function Zo(c,i,a,l){var f=P.getLocalStorage();if(f)try{f[Wt(c)]=st({timestamp:W.now(),transport:i,latency:a,cacheSkipCount:l})}catch{}}function wr(c){var i=P.getLocalStorage();if(i)try{delete i[Wt(c)]}catch{}}class at{constructor(i,{delay:a}){this.strategy=i,this.options={delay:a}}isSupported(){return this.strategy.isSupported()}connect(i,a){var l=this.strategy,f,y=new ye(this.options.delay,function(){f=l.connect(i,a)});return{abort:function(){y.ensureAborted(),f&&f.abort()},forceMinPriority:function(C){i=C,f&&f.forceMinPriority(C)}}}}class Be{constructor(i,a,l){this.test=i,this.trueBranch=a,this.falseBranch=l}isSupported(){var i=this.test()?this.trueBranch:this.falseBranch;return i.isSupported()}connect(i,a){var l=this.test()?this.trueBranch:this.falseBranch;return l.connect(i,a)}}class ea{constructor(i){this.strategy=i}isSupported(){return this.strategy.isSupported()}connect(i,a){var l=this.strategy.connect(i,function(f,y){y&&l.abort(),a(f,y)});return l}}function He(c){return function(){return c.isSupported()}}var ta=function(c,i,a){var l={};function f(Nr,Za,ec,tc,nc){var jr=a(c,Nr,Za,ec,tc,nc);return l[Nr]=jr,jr}var y=Object.assign({},i,{hostNonTLS:c.wsHost+":"+c.wsPort,hostTLS:c.wsHost+":"+c.wssPort,httpPath:c.wsPath}),C=Object.assign({},y,{useTLS:!0}),T=Object.assign({},i,{hostNonTLS:c.httpHost+":"+c.httpPort,hostTLS:c.httpHost+":"+c.httpsPort,httpPath:c.httpPath}),O={loop:!0,timeout:15e3,timeoutLimit:6e4},L=new br({minPingDelay:1e4,maxPingDelay:c.activityTimeout}),N=new br({lives:2,minPingDelay:1e4,maxPingDelay:c.activityTimeout}),F=f("ws","ws",3,y,L),ut=f("wss","ws",3,C,L),Xa=f("sockjs","sockjs",1,T),Ar=f("xhr_streaming","xhr_streaming",1,T,N),Va=f("xdr_streaming","xdr_streaming",1,T,N),Or=f("xhr_polling","xhr_polling",1,T),Ga=f("xdr_polling","xdr_polling",1,T),Pr=new be([F],O),Qa=new be([ut],O),Ya=new be([Xa],O),Rr=new be([new Be(He(Ar),Ar,Va)],O),Lr=new be([new Be(He(Or),Or,Ga)],O),Ir=new be([new Be(He(Rr),new Jt([Rr,new at(Lr,{delay:4e3})]),Lr)],O),Gt=new Be(He(Ir),Ir,Ya),Qt;return i.useTLS?Qt=new Jt([Pr,new at(Gt,{delay:2e3})]):Qt=new Jt([Pr,new at(Qa,{delay:2e3}),new at(Gt,{delay:5e3})]),new Qo(new ea(new Be(He(F),Qt,Gt)),l,{ttl:18e5,timeline:i.timeline,useTLS:i.useTLS})},na=ta,ra=function(){var c=this;c.timeline.info(c.buildTimelineMessage({transport:c.name+(c.options.useTLS?"s":"")})),c.hooks.isInitialized()?c.changeState("initialized"):c.hooks.file?(c.changeState("initializing"),p.load(c.hooks.file,{useTLS:c.options.useTLS},function(i,a){c.hooks.isInitialized()?(c.changeState("initialized"),a(!0)):(i&&c.onError(i),c.onClose(),a(!1))})):c.onClose()},ia={getRequest:function(c){var i=new window.XDomainRequest;return i.ontimeout=function(){c.emit("error",new k),c.close()},i.onerror=function(a){c.emit("error",a),c.close()},i.onprogress=function(){i.responseText&&i.responseText.length>0&&c.onChunk(200,i.responseText)},i.onload=function(){i.responseText&&i.responseText.length>0&&c.onChunk(200,i.responseText),c.emit("finished",200),c.close()},i},abortRequest:function(c){c.ontimeout=c.onerror=c.onprogress=c.onload=null,c.abort()}},sa=ia;const oa=256*1024;class aa extends ue{constructor(i,a,l){super(),this.hooks=i,this.method=a,this.url=l}start(i){this.position=0,this.xhr=this.hooks.getRequest(this),this.unloader=()=>{this.close()},P.addUnloadListener(this.unloader),this.xhr.open(this.method,this.url,!0),this.xhr.setRequestHeader&&this.xhr.setRequestHeader("Content-Type","application/json"),this.xhr.send(i)}close(){this.unloader&&(P.removeUnloadListener(this.unloader),this.unloader=null),this.xhr&&(this.hooks.abortRequest(this.xhr),this.xhr=null)}onChunk(i,a){for(;;){var l=this.advanceBuffer(a);if(l)this.emit("chunk",{status:i,data:l});else break}this.isBufferTooLong(a)&&this.emit("buffer_too_long")}advanceBuffer(i){var a=i.slice(this.position),l=a.indexOf(` +`);return l!==-1?(this.position+=l+1,a.slice(0,l)):null}isBufferTooLong(i){return this.position===i.length&&i.length>oa}}var Kt;(function(c){c[c.CONNECTING=0]="CONNECTING",c[c.OPEN=1]="OPEN",c[c.CLOSED=3]="CLOSED"})(Kt||(Kt={}));var we=Kt,ca=1;class ua{constructor(i,a){this.hooks=i,this.session=xr(1e3)+"/"+da(8),this.location=la(a),this.readyState=we.CONNECTING,this.openStream()}send(i){return this.sendRaw(JSON.stringify([i]))}ping(){this.hooks.sendHeartbeat(this)}close(i,a){this.onClose(i,a,!0)}sendRaw(i){if(this.readyState===we.OPEN)try{return P.createSocketRequest("POST",Sr(ha(this.location,this.session))).start(i),!0}catch{return!1}else return!1}reconnect(){this.closeStream(),this.openStream()}onClose(i,a,l){this.closeStream(),this.readyState=we.CLOSED,this.onclose&&this.onclose({code:i,reason:a,wasClean:l})}onChunk(i){if(i.status===200){this.readyState===we.OPEN&&this.onActivity();var a,l=i.data.slice(0,1);switch(l){case"o":a=JSON.parse(i.data.slice(1)||"{}"),this.onOpen(a);break;case"a":a=JSON.parse(i.data.slice(1)||"[]");for(var f=0;f{this.onChunk(i)}),this.stream.bind("finished",i=>{this.hooks.onFinished(this,i)}),this.stream.bind("buffer_too_long",()=>{this.reconnect()});try{this.stream.start()}catch(i){W.defer(()=>{this.onError(i),this.onClose(1006,"Could not start streaming",!1)})}}closeStream(){this.stream&&(this.stream.unbind_all(),this.stream.close(),this.stream=null)}}function la(c){var i=/([^\?]*)\/*(\??.*)/.exec(c);return{base:i[1],queryString:i[2]}}function ha(c,i){return c.base+"/"+i+"/xhr_send"}function Sr(c){var i=c.indexOf("?")===-1?"?":"&";return c+i+"t="+ +new Date+"&n="+ca++}function fa(c,i){var a=/(https?:\/\/)([^\/:]+)((\/|:)?.*)/.exec(c);return a[1]+i+a[3]}function xr(c){return P.randomInt(c)}function da(c){for(var i=[],a=0;a0&&c.onChunk(a.status,a.responseText);break;case 4:a.responseText&&a.responseText.length>0&&c.onChunk(a.status,a.responseText),c.emit("finished",a.status),c.close();break}},a},abortRequest:function(c){c.onreadystatechange=null,c.abort()}},ba=va,wa={createStreamingSocket(c){return this.createSocket(ma,c)},createPollingSocket(c){return this.createSocket(ya,c)},createSocket(c,i){return new pa(c,i)},createXHR(c,i){return this.createRequest(ba,c,i)},createRequest(c,i,a){return new aa(c,i,a)}},Cr=wa;Cr.createXDR=function(c,i){return this.createRequest(sa,c,i)};var Sa=Cr,xa={nextAuthCallbackID:1,auth_callbacks:{},ScriptReceivers:u,DependenciesReceivers:m,getDefaultStrategy:na,Transports:Lo,transportConnectionInitializer:ra,HTTPFactory:Sa,TimelineTransport:vo,getXHRAPI(){return window.XMLHttpRequest},getWebSocketAPI(){return window.WebSocket||window.MozWebSocket},setup(c){window.Pusher=c;var i=()=>{this.onDocumentBody(c.ready)};window.JSON?i():p.load("json2",{},i)},getDocument(){return document},getProtocol(){return this.getDocument().location.protocol},getAuthorizers(){return{ajax:ie,jsonp:po}},onDocumentBody(c){document.body?c():setTimeout(()=>{this.onDocumentBody(c)},0)},createJSONPRequest(c,i){return new mo(c,i)},createScriptRequest(c){return new go(c)},getLocalStorage(){try{return window.localStorage}catch{return}},createXHR(){return this.getXHRAPI()?this.createXMLHttpRequest():this.createMicrosoftXHR()},createXMLHttpRequest(){var c=this.getXHRAPI();return new c},createMicrosoftXHR(){return new ActiveXObject("Microsoft.XMLHTTP")},getNetwork(){return No},createWebSocket(c){var i=this.getWebSocketAPI();return new i(c)},createSocketRequest(c,i){if(this.isXHRSupported())return this.HTTPFactory.createXHR(c,i);if(this.isXDRSupported(i.indexOf("https:")===0))return this.HTTPFactory.createXDR(c,i);throw"Cross-origin HTTP requests are not supported"},isXHRSupported(){var c=this.getXHRAPI();return!!c&&new c().withCredentials!==void 0},isXDRSupported(c){var i=c?"https:":"http:",a=this.getProtocol();return!!window.XDomainRequest&&a===i},addUnloadListener(c){window.addEventListener!==void 0?window.addEventListener("unload",c,!1):window.attachEvent!==void 0&&window.attachEvent("onunload",c)},removeUnloadListener(c){window.addEventListener!==void 0?window.removeEventListener("unload",c,!1):window.detachEvent!==void 0&&window.detachEvent("onunload",c)},randomInt(c){return Math.floor(function(){return(window.crypto||window.msCrypto).getRandomValues(new Uint32Array(1))[0]/Math.pow(2,32)}()*c)}},P=xa,Xt;(function(c){c[c.ERROR=3]="ERROR",c[c.INFO=6]="INFO",c[c.DEBUG=7]="DEBUG"})(Xt||(Xt={}));var ct=Xt;class Ca{constructor(i,a,l){this.key=i,this.session=a,this.events=[],this.options=l||{},this.sent=0,this.uniqueID=0}log(i,a){i<=this.options.level&&(this.events.push(V({},a,{timestamp:W.now()})),this.options.limit&&this.events.length>this.options.limit&&this.events.shift())}error(i){this.log(ct.ERROR,i)}info(i){this.log(ct.INFO,i)}debug(i){this.log(ct.DEBUG,i)}isEmpty(){return this.events.length===0}send(i,a){var l=V({session:this.session,bundle:this.sent+1,key:this.key,lib:"js",version:this.options.version,cluster:this.options.cluster,features:this.options.features,timeline:this.events},this.options.params);return this.events=[],i(l,(f,y)=>{f||this.sent++,a&&a(f,y)}),!0}generateUniqueID(){return this.uniqueID++,this.uniqueID}}class ka{constructor(i,a,l,f){this.name=i,this.priority=a,this.transport=l,this.options=f||{}}isSupported(){return this.transport.isSupported({useTLS:this.options.useTLS})}connect(i,a){if(this.isSupported()){if(this.priority{l||(N(),y?y.close():f.close())},forceMinPriority:F=>{l||this.priority{var a="socket_id="+encodeURIComponent(c.socketId);for(var l in i.params)a+="&"+encodeURIComponent(l)+"="+encodeURIComponent(i.params[l]);if(i.paramsProvider!=null){let f=i.paramsProvider();for(var l in f)a+="&"+encodeURIComponent(l)+"="+encodeURIComponent(f[l])}return a};var Ra=c=>{if(typeof P.getAuthorizers()[c.transport]>"u")throw`'${c.transport}' is not a recognized auth transport`;return(i,a)=>{const l=Pa(i,c);P.getAuthorizers()[c.transport](P,l,c,w.UserAuthentication,a)}};const La=(c,i)=>{var a="socket_id="+encodeURIComponent(c.socketId);a+="&channel_name="+encodeURIComponent(c.channelName);for(var l in i.params)a+="&"+encodeURIComponent(l)+"="+encodeURIComponent(i.params[l]);if(i.paramsProvider!=null){let f=i.paramsProvider();for(var l in f)a+="&"+encodeURIComponent(l)+"="+encodeURIComponent(f[l])}return a};var Ia=c=>{if(typeof P.getAuthorizers()[c.transport]>"u")throw`'${c.transport}' is not a recognized auth transport`;return(i,a)=>{const l=La(i,c);P.getAuthorizers()[c.transport](P,l,c,w.ChannelAuthorization,a)}};const Na=(c,i,a)=>{const l={authTransport:i.transport,authEndpoint:i.endpoint,auth:{params:i.params,headers:i.headers}};return(f,y)=>{const C=c.channel(f.channelName);a(C,l).authorize(f.socketId,y)}};function Er(c,i){let a={activityTimeout:c.activityTimeout||d.activityTimeout,cluster:c.cluster,httpPath:c.httpPath||d.httpPath,httpPort:c.httpPort||d.httpPort,httpsPort:c.httpsPort||d.httpsPort,pongTimeout:c.pongTimeout||d.pongTimeout,statsHost:c.statsHost||d.stats_host,unavailableTimeout:c.unavailableTimeout||d.unavailableTimeout,wsPath:c.wsPath||d.wsPath,wsPort:c.wsPort||d.wsPort,wssPort:c.wssPort||d.wssPort,enableStats:Ua(c),httpHost:ja(c),useTLS:Fa(c),wsHost:Ma(c),userAuthenticator:Ba(c),channelAuthorizer:qa(c,i)};return"disabledTransports"in c&&(a.disabledTransports=c.disabledTransports),"enabledTransports"in c&&(a.enabledTransports=c.enabledTransports),"ignoreNullOrigin"in c&&(a.ignoreNullOrigin=c.ignoreNullOrigin),"timelineParams"in c&&(a.timelineParams=c.timelineParams),"nacl"in c&&(a.nacl=c.nacl),a}function ja(c){return c.httpHost?c.httpHost:c.cluster?`sockjs-${c.cluster}.pusher.com`:d.httpHost}function Ma(c){return c.wsHost?c.wsHost:Da(c.cluster)}function Da(c){return`ws-${c}.pusher.com`}function Fa(c){return P.getProtocol()==="https:"?!0:c.forceTLS!==!1}function Ua(c){return"enableStats"in c?c.enableStats:"disableStats"in c?!c.disableStats:!1}const Tr=c=>"customHandler"in c&&c.customHandler!=null;function Ba(c){const i=Object.assign(Object.assign({},d.userAuthentication),c.userAuthentication);return Tr(i)?i.customHandler:Ra(i)}function Ha(c,i){let a;if("channelAuthorization"in c)a=Object.assign(Object.assign({},d.channelAuthorization),c.channelAuthorization);else if(a={transport:c.authTransport||d.authTransport,endpoint:c.authEndpoint||d.authEndpoint},"auth"in c&&("params"in c.auth&&(a.params=c.auth.params),"headers"in c.auth&&(a.headers=c.auth.headers)),"authorizer"in c)return{customHandler:Na(i,a,c.authorizer)};return a}function qa(c,i){const a=Ha(c,i);return Tr(a)?a.customHandler:Ia(a)}class za extends ue{constructor(i){super(function(a,l){D.debug(`No callbacks on watchlist events for ${a}`)}),this.pusher=i,this.bindWatchlistInternalEvent()}handleEvent(i){i.data.events.forEach(a=>{this.emit(a.name,a)})}bindWatchlistInternalEvent(){this.pusher.connection.bind("message",i=>{var a=i.event;a==="pusher_internal:watchlist_events"&&this.handleEvent(i)})}}function $a(){let c,i;return{promise:new Promise((l,f)=>{c=l,i=f}),resolve:c,reject:i}}var Ja=$a;class Wa extends ue{constructor(i){super(function(a,l){D.debug("No callbacks on user for "+a)}),this.signin_requested=!1,this.user_data=null,this.serverToUserChannel=null,this.signinDonePromise=null,this._signinDoneResolve=null,this._onAuthorize=(a,l)=>{if(a){D.warn(`Error during signin: ${a}`),this._cleanup();return}this.pusher.send_event("pusher:signin",{auth:l.auth,user_data:l.user_data})},this.pusher=i,this.pusher.connection.bind("state_change",({previous:a,current:l})=>{a!=="connected"&&l==="connected"&&this._signin(),a==="connected"&&l!=="connected"&&(this._cleanup(),this._newSigninPromiseIfNeeded())}),this.watchlist=new za(i),this.pusher.connection.bind("message",a=>{var l=a.event;l==="pusher:signin_success"&&this._onSigninSuccess(a.data),this.serverToUserChannel&&this.serverToUserChannel.name===a.channel&&this.serverToUserChannel.handleEvent(a)})}signin(){this.signin_requested||(this.signin_requested=!0,this._signin())}_signin(){this.signin_requested&&(this._newSigninPromiseIfNeeded(),this.pusher.connection.state==="connected"&&this.pusher.config.userAuthenticator({socketId:this.pusher.connection.socket_id},this._onAuthorize))}_onSigninSuccess(i){try{this.user_data=JSON.parse(i.user_data)}catch{D.error(`Failed parsing user data after signin: ${i.user_data}`),this._cleanup();return}if(typeof this.user_data.id!="string"||this.user_data.id===""){D.error(`user_data doesn't contain an id. user_data: ${this.user_data}`),this._cleanup();return}this._signinDoneResolve(),this._subscribeChannels()}_subscribeChannels(){const i=a=>{a.subscriptionPending&&a.subscriptionCancelled?a.reinstateSubscription():!a.subscriptionPending&&this.pusher.connection.state==="connected"&&a.subscribe()};this.serverToUserChannel=new qt(`#server-to-user-${this.user_data.id}`,this.pusher),this.serverToUserChannel.bind_global((a,l)=>{a.indexOf("pusher_internal:")===0||a.indexOf("pusher:")===0||this.emit(a,l)}),i(this.serverToUserChannel)}_cleanup(){this.user_data=null,this.serverToUserChannel&&(this.serverToUserChannel.unbind_all(),this.serverToUserChannel.disconnect(),this.serverToUserChannel=null),this.signin_requested&&this._signinDoneResolve()}_newSigninPromiseIfNeeded(){if(!this.signin_requested||this.signinDonePromise&&!this.signinDonePromise.done)return;const{promise:i,resolve:a,reject:l}=Ja();i.done=!1;const f=()=>{i.done=!0};i.then(f).catch(f),this.signinDonePromise=i,this._signinDoneResolve=a}}class z{static ready(){z.isReady=!0;for(var i=0,a=z.instances.length;iP.getDefaultStrategy(this.config,f,Ta);this.connection=le.createConnectionManager(this.key,{getStrategy:l,timeline:this.timeline,activityTimeout:this.config.activityTimeout,pongTimeout:this.config.pongTimeout,unavailableTimeout:this.config.unavailableTimeout,useTLS:!!this.config.useTLS}),this.connection.bind("connected",()=>{this.subscribeAll(),this.timelineSender&&this.timelineSender.send(this.connection.isUsingTLS())}),this.connection.bind("message",f=>{var y=f.event,C=y.indexOf("pusher_internal:")===0;if(f.channel){var T=this.channel(f.channel);T&&T.handleEvent(f)}C||this.global_emitter.emit(f.event,f.data)}),this.connection.bind("connecting",()=>{this.channels.disconnect()}),this.connection.bind("disconnected",()=>{this.channels.disconnect()}),this.connection.bind("error",f=>{D.warn(f)}),z.instances.push(this),this.timeline.info({instances:z.instances.length}),this.user=new Wa(this),z.isReady&&this.connect()}switchCluster(i){const{appKey:a,cluster:l}=i;this.key=a,this.options=Object.assign(Object.assign({},this.options),{cluster:l}),this.config=Er(this.options,this),this.connection.switchCluster(this.key)}channel(i){return this.channels.find(i)}allChannels(){return this.channels.all()}connect(){if(this.connection.connect(),this.timelineSender&&!this.timelineSenderTimer){var i=this.connection.isUsingTLS(),a=this.timelineSender;this.timelineSenderTimer=new eo(6e4,function(){a.send(i)})}}disconnect(){this.connection.disconnect(),this.timelineSenderTimer&&(this.timelineSenderTimer.ensureAborted(),this.timelineSenderTimer=null)}bind(i,a,l){return this.global_emitter.bind(i,a,l),this}unbind(i,a,l){return this.global_emitter.unbind(i,a,l),this}bind_global(i){return this.global_emitter.bind_global(i),this}unbind_global(i){return this.global_emitter.unbind_global(i),this}unbind_all(i){return this.global_emitter.unbind_all(),this}subscribeAll(){var i;for(i in this.channels.channels)this.channels.channels.hasOwnProperty(i)&&this.subscribe(i)}subscribe(i){var a=this.channels.add(i,this);return a.subscriptionPending&&a.subscriptionCancelled?a.reinstateSubscription():!a.subscriptionPending&&this.connection.state==="connected"&&a.subscribe(),a}unsubscribe(i){var a=this.channels.find(i);a&&a.subscriptionPending?a.cancelSubscription():(a=this.channels.remove(i),a&&a.subscribed&&a.unsubscribe())}send_event(i,a,l){return this.connection.send_event(i,a,l)}shouldUseTLS(){return this.config.useTLS}signin(){this.user.signin()}}z.instances=[],z.isReady=!1,z.logToConsole=!1,z.Runtime=P,z.ScriptReceivers=P.ScriptReceivers,z.DependenciesReceivers=P.DependenciesReceivers,z.auth_callbacks=P.auth_callbacks;var Vt=r.default=z;function Ka(c){if(c==null)throw"You must pass your app key when you instantiate Pusher."}P.setup(z)}])})})(Ni);var Lu=Ni.exports;const Iu=Ru(Lu);window.Pusher=Iu;window.Echo=new Pu({broadcaster:"reverb",key:"zlno4t94kysjzmtwlmux",wsHost:"localhost",wsPort:"8080",wssPort:"8080",forceTLS:!1,enabledTransports:["ws","wss"]});window.axios=vu;window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest";var pn=!1,gn=!1,Ce=[],mn=-1;function Nu(e){ju(e)}function ju(e){Ce.includes(e)||Ce.push(e),Mu()}function ji(e){let t=Ce.indexOf(e);t!==-1&&t>mn&&Ce.splice(t,1)}function Mu(){!gn&&!pn&&(pn=!0,queueMicrotask(Du))}function Du(){pn=!1,gn=!0;for(let e=0;ee.effect(t,{scheduler:n=>{_n?Nu(n):n()}}),Mi=e.raw}function Gr(e){Ae=e}function Bu(e){let t=()=>{};return[r=>{let s=Ae(r);return e._x_effects||(e._x_effects=new Set,e._x_runEffects=()=>{e._x_effects.forEach(o=>o())}),e._x_effects.add(s),t=()=>{s!==void 0&&(e._x_effects.delete(s),Me(s))},s},()=>{t()}]}function Di(e,t){let n=!0,r,s=Ae(()=>{let o=e();JSON.stringify(o),n?r=o:queueMicrotask(()=>{t(o,r),r=o}),n=!1});return()=>Me(s)}function Ke(e,t,n={}){e.dispatchEvent(new CustomEvent(t,{detail:n,bubbles:!0,composed:!0,cancelable:!0}))}function ge(e,t){if(typeof ShadowRoot=="function"&&e instanceof ShadowRoot){Array.from(e.children).forEach(s=>ge(s,t));return}let n=!1;if(t(e,()=>n=!0),n)return;let r=e.firstElementChild;for(;r;)ge(r,t),r=r.nextElementSibling}function te(e,...t){console.warn(`Alpine Warning: ${e}`,...t)}var Qr=!1;function Hu(){Qr&&te("Alpine has already been initialized on this page. Calling Alpine.start() more than once can cause problems."),Qr=!0,document.body||te("Unable to initialize. Trying to load Alpine before `` is available. Did you forget to add `defer` in Alpine's ` + + diff --git a/resources/views/acceptance-patients.blade.php b/resources/views/acceptance-patients.blade.php new file mode 100644 index 0000000..98c4dbf --- /dev/null +++ b/resources/views/acceptance-patients.blade.php @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + Patient Acceptance + + +
+ @include('doctor-sidebar') +
+

+
Patient Acceptance
+

+ +
+ + {{-- LIST CARDS --}} + + @foreach ($consultations as $consultation) +
+
+
+
+
+

{{ $consultation->patient->name }}

+

{{ $consultation->patient->email }}

+
+
+
+ Location icon +

{{ $consultation->location }}

+
+
+
+ Calendar icon +

{{ $consultation->consultation_date }}

+
+
+ Clock icon +

{{ $consultation->consultation_time }}

+
+
+ +
+
+
+ @csrf + +
+
+ +
+
+ @csrf + +
+
+
+
+
+ @endforeach +
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/resources/views/activity-report.blade.php b/resources/views/activity-report.blade.php new file mode 100644 index 0000000..699a972 --- /dev/null +++ b/resources/views/activity-report.blade.php @@ -0,0 +1,271 @@ + + + + + + + + + + + + + + + + + + Activity Report + + +
+ @include('client-sidebar') +
+

+
Activity Report
+

+
+

Summary

+
+
+
+ Steps icon +
Steps
+
+
+
{{ $totalSteps }}
+
Steps per minute
+
+
+
+ +
+
+
+ Steps icon +
Distance
+
+
+
{{ $totalDistance }}
+
Meters
+
+
+
+ +
+
+
+ Steps icon +
Duration
+
+
+
{{ $durationValue }}
+
{{ ucfirst($durationUnit) }}
+
+
+
+ +
+
+
+ Steps icon +
Avg. Sleep
+
+
+
{{ $averageSleepTime }}
+
Hours / Day
+
+
+
+ +

Recommendation & Statistics

+
+ +
+
Recommendation
+
+
+ Calories icon +
+
+
+

Calories (cal)

+

+ 0 / {{ $predictedCalories }} +

+
+
+
+
+ +
+
+ +
+
+ Calories icon +
+
+ @php + $maxDistance = $recommended_distance; + $percentage = 0; + if ($maxDistance != 0) { + $percentage = ($totalDistance / $maxDistance) * 100; + $percentage = min($percentage, 100); // Ensure the percentage doesn't exceed 100 + } + @endphp +
+

Running Distance (m)

+

+ {{ $totalDistance }} /{{ $maxDistance }} +

+
+
+
+
+
+
+
+ + {{-- STATISTICS --}} +
+
Daily Activity
+ +
+
+ +
+
+
Weight Tracking
+ @php + $previousWeight = null; + @endphp + + @foreach ($filteredHealthData as $data) +
+
+
{{ $data->formatted_created_at }}
+
{{ $data->weight }} kg
+
+
+
{{ $data->time }}
+
+ @if ($data->weight_difference > 0) +
+{{ $data->weight_difference }} kg
+ @elseif ($data->weight_difference < 0) +
{{ $data->weight_difference }} kg
+ @else +
+{{ $data->weight_difference }} kg
+ @endif +
+
+
+ @endforeach +
+
+ + +
+
+
Activity History
+
+ + + + + + + + + + + + @foreach ($activities as $activity) + + + + + + + + @endforeach + +
TanggalOlahragaJarak LariWaktu/DurasiAvg. Steps
{{ $activity['date'] }}{{ $activity['type'] }}{{ $activity['distance'] }} meter{{ $activity['duration'] }} detik{{ $activity['avg_steps'] }} detik
+
+
+
+ +
+ + +
+
+ + + + + + + + {{-- --}} + + + + diff --git a/resources/views/admin-profile.blade.php b/resources/views/admin-profile.blade.php new file mode 100644 index 0000000..c4f8c35 --- /dev/null +++ b/resources/views/admin-profile.blade.php @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + Admin Profile + + + + @include('admin-sidebar') +
+
+
+
+
+
+
+
+
+
+
+ 140x140 +
+
+
+
+
+

John Smith

+

@johnny.s

+
+ +
+
+
+ administrator +
Joined 09 Dec 2017
+
+
+
+ +
+
+
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
Change Password
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+ + +
+
+
+
+
+
+
+
+
+
+ + + + diff --git a/resources/views/admin-sidebar.blade.php b/resources/views/admin-sidebar.blade.php new file mode 100644 index 0000000..77f0828 --- /dev/null +++ b/resources/views/admin-sidebar.blade.php @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + Dashboard + + + +
+ + + +
+ + + + + + + + + + \ No newline at end of file diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php new file mode 100644 index 0000000..673e941 --- /dev/null +++ b/resources/views/auth/login.blade.php @@ -0,0 +1,87 @@ + + + + + + + + + + + + + Login + + + + + + + + + + @vite(['resources/css/app.css', 'resources/js/app.js']) + + + @include('navbar') +
+ +
+

Login

+ +
+ @csrf + + +
+ + + +
+ + +
+ + + + + +
+ + +
+ +
+ +
+ + + {{ __('Log in') }} + +
+ + +
+

Belum memiliki akun?Daftar sekarang

+
+
+
+
+ + + + + + + diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php new file mode 100644 index 0000000..0abf440 --- /dev/null +++ b/resources/views/auth/register.blade.php @@ -0,0 +1,123 @@ + + + + + + + + + + + + + Register + + + + + + + + + + @vite(['resources/css/app.css', 'resources/js/app.js']) + + + @include('navbar') +
+
+

Register

+
+ @csrf + + +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + + + +
+ + + + + +
+ + +
+ + + + + +
+ +
+ + + {{ __('Register') }} + +
+ +
+
+
+ + + diff --git a/resources/views/client-sidebar.blade.php b/resources/views/client-sidebar.blade.php new file mode 100644 index 0000000..9a338df --- /dev/null +++ b/resources/views/client-sidebar.blade.php @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + Dashboard + + + +
+ + + +
+ + + + + + + + + + \ No newline at end of file diff --git a/resources/views/components/input-error.blade.php b/resources/views/components/input-error.blade.php new file mode 100644 index 0000000..ad95f6b --- /dev/null +++ b/resources/views/components/input-error.blade.php @@ -0,0 +1,9 @@ +@props(['messages']) + +@if ($messages) +
    merge(['class' => 'text-sm text-red-600 dark:text-red-400 space-y-1']) }}> + @foreach ((array) $messages as $message) +
  • {{ $message }}
  • + @endforeach +
+@endif diff --git a/resources/views/components/input-label.blade.php b/resources/views/components/input-label.blade.php new file mode 100644 index 0000000..e93b059 --- /dev/null +++ b/resources/views/components/input-label.blade.php @@ -0,0 +1,5 @@ +@props(['value']) + + diff --git a/resources/views/components/primary-button.blade.php b/resources/views/components/primary-button.blade.php new file mode 100644 index 0000000..99bf389 --- /dev/null +++ b/resources/views/components/primary-button.blade.php @@ -0,0 +1,3 @@ + diff --git a/resources/views/components/text-input.blade.php b/resources/views/components/text-input.blade.php new file mode 100644 index 0000000..7779a13 --- /dev/null +++ b/resources/views/components/text-input.blade.php @@ -0,0 +1,3 @@ +@props(['disabled' => false]) + +merge(['class' => 'border-gray-300 dark:border-gray-700 dark:bg-gray-900 dark:text-gray-300 focus:border-indigo-500 dark:focus:border-indigo-600 focus:ring-indigo-500 dark:focus:ring-indigo-600 rounded-md shadow-sm']) !!}> diff --git a/resources/views/contact.blade.php b/resources/views/contact.blade.php new file mode 100644 index 0000000..e2623f6 --- /dev/null +++ b/resources/views/contact.blade.php @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + Contact + + + @include('navbar') +
+

Get In Touch

+
+
+
+ +
+

Phone

+

Admin

+

+62 817794453

+

Customer Service

+

+62 81334754

+
+
+
+
+ +
+

Email

+

@Aigo.com

+
+
+
+
+ +
+

Address

+

Jl. Telekomunikasi. 1, Terusan Buahbatu - Bojongsoang, Telkom University, Sukapura, Kec. Dayeuhkolot, Kabupaten Bandung, Jawa Barat 40257

+
+
+
+
+ + + + + + \ No newline at end of file diff --git a/resources/views/customer-profile.blade.php b/resources/views/customer-profile.blade.php new file mode 100644 index 0000000..bbb2449 --- /dev/null +++ b/resources/views/customer-profile.blade.php @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + Customer Profile + + + + @include('client-sidebar') +
+
+
+
+
+
+
+
+
+
+
+ 140x140 +
+
+
+
+
+

John Smith

+

@johnny.s

+
+ +
+
+
+ administrator +
Joined 09 Dec 2017
+
+
+
+ +
+
+
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
Change Password
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+ + +
+
+
+
+
+
+
+
+
+
+ + + + diff --git a/resources/views/customer-result.blade.php b/resources/views/customer-result.blade.php new file mode 100644 index 0000000..837d77a --- /dev/null +++ b/resources/views/customer-result.blade.php @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + Jadwal Konsultasi + + + @include('client-sidebar') +
+
+
+
+
Hasil Konsultasi Dokter
+
+ @foreach ($consultations as $consultation) +
+
+
+ +
+ +
+
+ + + + @endforeach +
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/resources/views/customer-schedule.blade.php b/resources/views/customer-schedule.blade.php new file mode 100644 index 0000000..71e6720 --- /dev/null +++ b/resources/views/customer-schedule.blade.php @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + Jadwal Konsultasi + + + @include('client-sidebar') +
+ +
+ + + + + + + + + + + + + + @foreach ($approvedConsultations as $consultation) + + + + + + {{-- --}} + + + + + + + @endforeach + + +
Nama DokterLokasiGenderEmailAction
{{ $consultation->doctor->name }}{{ $consultation->location }}{{ $consultation->doctor->gender }}{{ $consultation->doctor->email }}{{ $item->updated_at->format('d F Y') }} + info + chat +
+
+ +
+ + + + + + + + + \ No newline at end of file diff --git a/resources/views/customer-transaction.blade.php b/resources/views/customer-transaction.blade.php new file mode 100644 index 0000000..9c920c4 --- /dev/null +++ b/resources/views/customer-transaction.blade.php @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + Customer Transaction + + + @include('client-sidebar') +
+
+
+
+
+
+
+
Total Earnings
+
₹430.00
+
as of 01-December 2022
+
+
+
+
+
Pending Payments
+
₹100.00
+
as of 01-December 2022
+
+
+
+
Payment History
+
+
All
+
Complete
+
Pending
+
Rejected
+
+
+
+
Order ID
+
Date
+
Amount
+
Total Questions
+
Status
+
Action
+
+
+
#15267
+
Mar 1, 2023
+
100
+
1
+
Success
+ +
+
+
#153587
+
Jan 26, 2023
+
300
+
3
+
Success
+ +
+
+
#12436
+
Feb 12, 2033
+
100
+
1
+
Success
+ +
+
+
#16879
+
Feb 28, 2033
+
500
+
5
+
Rejected
+ +
+
+
#16378
+
March 13, 2033
+
500
+
5
+
Success
+ +
+
+
#16609
+
March 18, 2033
+
100
+
1
+
Pending
+ +
+
+ + +
+
+
+
+ + + + + \ No newline at end of file diff --git a/resources/views/dashboardAdmin.blade.php b/resources/views/dashboardAdmin.blade.php new file mode 100644 index 0000000..9a64896 --- /dev/null +++ b/resources/views/dashboardAdmin.blade.php @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + Admin + + + + @include('admin-sidebar') +
+

Admin Dashboard

+
+
+
+
+
+
+
+ Doctor Total Icon +
Doctor Total
+
+

{{ $doctorCount }}

+
+
+
+
+
+ Patient icon +
Patient Total
+
+

{{ $patientCount }}

+
+
+
+
+
+

User Roles

+ User roles icon +
+ +
+
+
+
+

Patients Summary

+
+
+
+
+
+
+ Male Icon +
+
+ Female Icon +
+
+
+
Male
+
{{ $maleCount }}
+
Female
+
{{ $femaleCount }}
+
+
+
+
+
+
+
+ Normal BMI Icon +
+
+ Obesity BMI Icon +
+
+
+
Normal
+
{{ $normalCount }}
+
Obesity
+
{{ $obesityCount }}
+
+
+
+
+

Statistics

+
+ +
+
+
+
+
+
+
+
+
+ Notification icon +
+

Don't forget to check notifications!

+

You might have missed something important!

+
+
+
+
+ +
+
+
+
+
+
+ +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/resources/views/dashboardClient.blade.php b/resources/views/dashboardClient.blade.php new file mode 100644 index 0000000..f3e720a --- /dev/null +++ b/resources/views/dashboardClient.blade.php @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + Dashboard + + +
+ @include('client-sidebar') +
+

+
Customer Dashboard
+

+ +
+ + {{-- KOLOM 1 --}} +
+ {{-- PROFILE & RECOMMENDATIONS --}} +
+ {{-- PROFILE --}} +
+
+
+

{{auth()->user()->name}}

+

{{auth()->user()->email}}

+ +
+
+ Weight +
+ {{$healthData->weight ?? '0'}} + kg +
+
+ +
+ Height +
+ {{$healthData->height ?? '0'}} + cm +
+
+ +
+ Obesity Status + {{ $healthData->obesity_status ?? "0"}} +
+
+
+ +
+ + {{-- RECOMMENDATIONS --}} +
+

Recommendations

+
+
+ Calories icon +
+
+

Calories +

+

{{ $healthData->calorie_recommendation ?? '0' }} cal

+ +
+
+ +
+
+ Calories icon +
+
+

Running Distance

+

{{ $totalDistance ?? '0' }} meters

+
+
+ +
+
+ Calories icon +
+
+

Sleep Time

+

{{ $healthData->sleeptime ?? '0' }} hours/day

+
+
+
+
+ + + {{-- ACTIVITY HISTORY --}} +
+
+
+
Date
+
Activity
+
Distance
+
Duration
+
+ + @foreach ($activities as $activity) +
+
{{ $activity['date'] }}
+
{{ $activity['type'] }}
+
{{ $activity['distance'] }} m
+
{{ $activity['duration'] }} seconds
+
+ @endforeach +
+
+
+ + +
+ +
+
+ + + + {{-- --}} + + diff --git a/resources/views/dashboardDoctor.blade.php b/resources/views/dashboardDoctor.blade.php new file mode 100644 index 0000000..f213d76 --- /dev/null +++ b/resources/views/dashboardDoctor.blade.php @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + Doctor Dashboard + + + @include('doctor-sidebar') +
+
+
+

Doctor Dashboard

+
+
+
+
+
+ +
+
+
+
{{ $normalWeightCount }}
+
Normal
+
+
+
{{ $overweightCount }}
+
Overweight
+
+
+
{{ $unknownCount }}
+
Unknown
+
+
+
+
+
+
+
+
+

Patients Summary

+
+
+
+
+
+
+
+ Male icon +
+
+ Female icon +
+
+
+
Male
+
{{ $malePatients }}
+
Female
+
{{ $femalePatients }}
+
+
+
+
+
+
+
+ Male icon +
+
+ Female icon +
+
+
+
Total appointment
+
{{ $totalAppointments }}
+
Pending appointment
+
{{ $pendingAppointments }}
+
+
+
+
+
+
+
+
+
+
+

Appointments

+ + View More + + +
+ +
+
Name
+
Location
+
Date
+
Time
+
Status
+
+ + @foreach ($latestAppointments as $appointment) +
+
+ {{ $appointment->patient->name }} avatar +
{{ $appointment->patient->name }}
+
+
{{ $appointment->location }}
+
{{ $appointment->consultation_date }}
+
{{ $appointment->consultation_time }}
+
+ @if ($appointment->consultation_status === 'cancelled' || $appointment->consultation_status === 'declined') + {{ ucfirst($appointment->consultation_status) }} + @elseif ($appointment->consultation_status === 'pending') + {{ ucfirst($appointment->consultation_status) }} + @elseif ($appointment->consultation_status === 'approved') + {{ ucfirst($appointment->consultation_status) }} + @else + {{ ucfirst($appointment->consultation_status) }} + @endif +
+
+ @endforeach +
+
+
+
+ + + + + + diff --git a/resources/views/doctor-list.blade.php b/resources/views/doctor-list.blade.php new file mode 100644 index 0000000..d24b334 --- /dev/null +++ b/resources/views/doctor-list.blade.php @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + List Dokter + + + @include('admin-sidebar') +
+ +
+ + + + + + + + + + + + + + + @foreach ($data as $item) + + + + + + + {{-- --}} + + + @endforeach + + +
UsernameNama LengkapGenderEmailTeleponAction
{{ $item->username }}{{ $item->name }}{{ $item->gender }}{{ $item->email }}{{ $item->telepon }}{{ $item->updated_at->format('d F Y') }} + edit + delete_forever +
+
+
+ + + + + + + + + + + \ No newline at end of file diff --git a/resources/views/doctor-notifications.blade.php b/resources/views/doctor-notifications.blade.php new file mode 100644 index 0000000..c8c3895 --- /dev/null +++ b/resources/views/doctor-notifications.blade.php @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + Patient Acceptance + + +
+ @include('doctor-sidebar') +
+

+
Log & History
+

+ +
+ @if ($notifications->count() > 0) +
    + @foreach ($notifications as $notification) +
  • +
    +
    + {{ $notification->message }} +
    + {{ $notification->created_at->diffForHumans() }} +
    +
    +
  • + @endforeach +
+ @else +

No notifications found.

+ @endif +
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/resources/views/doctor-profile.blade.php b/resources/views/doctor-profile.blade.php new file mode 100644 index 0000000..f6eb52c --- /dev/null +++ b/resources/views/doctor-profile.blade.php @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + Doctor Profile + + + @include('doctor-sidebar') +
+
+
+
+
+
+
+
+
+
+
+ 140x140 +
+
+
+
+
+

{{auth()->user()->name}}

+

{{auth()->user()->email}}

+
+ +
+
+
+ administrator +
Joined 09 Dec 2017
+
+
+
+ +
+
+
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
Change Password
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+ + +
+
+
+
+
+
+
+
+
+
+ + + + diff --git a/resources/views/doctor-result-form.blade.php b/resources/views/doctor-result-form.blade.php new file mode 100644 index 0000000..a1c5a68 --- /dev/null +++ b/resources/views/doctor-result-form.blade.php @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + Berikan Rekomendasi Pasien + + + @include('doctor-sidebar') +
+ +
+
+
+
Consultation Result
+ +
+
+ @csrf + + + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+
+
+
+
+ +
+ + + + + \ No newline at end of file diff --git a/resources/views/doctor-schedule.blade.php b/resources/views/doctor-schedule.blade.php new file mode 100644 index 0000000..07ff956 --- /dev/null +++ b/resources/views/doctor-schedule.blade.php @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + Doctor Dashboard + + + @include('doctor-sidebar') +
+ +
+ + + + + + + + + + + + + + + + @foreach ($approvedConsultations as $consultation) + + + + + + + + {{-- --}} + + + + @endforeach + + +
Nama LengkapLokasiGenderEmailBerat BadanTinggi BadanAction
{{ $consultation->patient->name }}{{ $consultation->location }}{{ $consultation->patient->gender }}{{ $consultation->patient->email }}{{ $consultation->patient->healthDatas->last()->weight ?? 'N/A'}} {{ $consultation->patient->healthDatas->last()->height ?? 'N/A'}}{{ $item->updated_at->format('d F Y') }} + assignment_add + chat +
+
+ +
+ + + + + \ No newline at end of file diff --git a/resources/views/doctor-sidebar.blade.php b/resources/views/doctor-sidebar.blade.php new file mode 100644 index 0000000..fe6c5b8 --- /dev/null +++ b/resources/views/doctor-sidebar.blade.php @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + Dashboard + + + +
+ + + +
+ + + + + + + + + + \ No newline at end of file diff --git a/resources/views/doctor-transaction.blade.php b/resources/views/doctor-transaction.blade.php new file mode 100644 index 0000000..d672670 --- /dev/null +++ b/resources/views/doctor-transaction.blade.php @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + Doctor Transaction + + + @include('doctor-sidebar') +
+
+
+
+
+
+
+
Total Earnings
+
₹430.00
+
as of 01-December 2022
+
+
+
+
+
Pending Payments
+
₹100.00
+
as of 01-December 2022
+
+
+
+
Payment History
+
+
All
+
Complete
+
Pending
+
Rejected
+
+
+
+
Order ID
+
Date
+
Amount
+
Total Questions
+
Status
+
Action
+
+
+
#15267
+
Mar 1, 2023
+
100
+
1
+
Success
+ +
+
+
#153587
+
Jan 26, 2023
+
300
+
3
+
Success
+ +
+
+
#12436
+
Feb 12, 2033
+
100
+
1
+
Success
+ +
+
+
#16879
+
Feb 28, 2033
+
500
+
5
+
Rejected
+ +
+
+
#16378
+
March 13, 2033
+
500
+
5
+
Success
+ +
+
+
#16609
+
March 18, 2033
+
100
+
1
+
Pending
+
+ + +
+
+
+ + +
+
+
+
+ + + + + \ No newline at end of file diff --git a/resources/views/health-data.blade.php b/resources/views/health-data.blade.php new file mode 100644 index 0000000..a0e3bf4 --- /dev/null +++ b/resources/views/health-data.blade.php @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + Request Consultation + + +
+ @include('client-sidebar') +
+
+
+

Health Data

+
+
+
+
+ @csrf + {{-- ROW 1 --}} +
+ {{-- Tanggal Lahir --}} +
+
+ +
+ +
+
+
+ @error('birthdate') +
{{ $message }}
+ @enderror +
+
+ {{-- Berat Badan --}} +
+
+ + + @error('weight') +
{{ $message }}
+ @enderror +
+
+
+ {{-- ROW 2 --}} +
+ {{-- Tinggi Badan --}} +
+
+ + + @error('height') +
{{ $message }}
+ @enderror +
+
+ {{-- Waktu Tidur --}} +
+
+ + + @error('sleeptime') +
{{ $message }}
+ @enderror +
+
+
+ {{-- ROW 3 --}} +
+ {{-- Riwayat Alergi Makanan --}} +
+
+ + + @error('alergi_makanan') +
{{ $message }}
+ @enderror +
+
+ {{-- Kebiasaan Makan --}} +
+
+ + + @error('food') +
{{ $message }}
+ @enderror +
+
+
+ {{-- ROW 4 --}} +
+ {{-- Riwayat Penyakit --}} +
+
+ + + @error('disease') +
{{ $message }}
+ @enderror +
+
+
+
+
+ +
+
+
+ +
+
+
+ + + + + + diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php new file mode 100644 index 0000000..308e465 --- /dev/null +++ b/resources/views/home.blade.php @@ -0,0 +1,151 @@ + + + + + + + + + + + Home + + + + + @include('navbar') +
+
+
+
+
+

Cegah sebelum Terlambat. Kenali Risiko dan Amati Pola Makan serta Gaya Hidup Anda.

+

Obesitas bukan hanya masalah penampilan, tapi juga kesehatan. Perubahan kecil dalam gaya hidup dapat membuat perbedaan besar.

+ Kenali Tubuh Anda +
+
+ +
+
+
+
+
+
+
+

Our Service

+
+
+
+
+
+ ... +
+

Cek Tingkat Obesitas

+
+
+
+
+
+ ... +
+

Rekomendasi Pengelolaan Kesehatan

+
+
+
+
+
+ ... +
+

Konsultasi Dokter

+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/resources/views/jadwal-konsultasi.blade.php b/resources/views/jadwal-konsultasi.blade.php new file mode 100644 index 0000000..1158c5d --- /dev/null +++ b/resources/views/jadwal-konsultasi.blade.php @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + Request Consultation + + +
+ @include('client-sidebar') +
+
+
+

Jadwal Konsultasi

+
+
+
+ +
+ @csrf + {{-- ROW 1 --}} +
+ {{-- PILIH DOKTER --}} +
+
+ + + @error('doctor_id') +
{{ $message }}
+ @enderror +
+
+ + {{-- TANGGAL KONSULTASI --}} +
+
+ +
+ +
+
+
+ @error('consultation_date') +
{{ $message }}
+ @enderror +
+
+
+ + {{-- ROW 2 --}} +
+ {{-- JAM KONSULTASI --}} +
+
+ + + @error('consultation_time') +
{{ $message }}
+ @enderror +
+
+ + {{-- LOKASI KONSULTASI --}} +
+
+ + + @error('location') +
{{ $message }}
+ @enderror +
+
+
+
+
+ +
+
+
+
+
+
+ + + + + + diff --git a/resources/views/navbar.blade.php b/resources/views/navbar.blade.php new file mode 100644 index 0000000..7e92656 --- /dev/null +++ b/resources/views/navbar.blade.php @@ -0,0 +1,57 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resources/views/patient-list.blade.php b/resources/views/patient-list.blade.php new file mode 100644 index 0000000..74def28 --- /dev/null +++ b/resources/views/patient-list.blade.php @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + List Pasien + + + + @include('admin-sidebar') +
+ + +
+ + + + + + + + + + + + + + + @foreach ($data as $item) + + + + + + + {{-- --}} + + + @endforeach + + +
UsernameNama LengkapGenderEmailTeleponAction
{{ $item->username }}{{ $item->name }}{{ $item->gender }}{{ $item->email }}{{ $item->telepon }}{{ $item->updated_at->format('d F Y') }} + edit + delete_forever +
+
+
+ + + + + + + + + + + \ No newline at end of file diff --git a/resources/views/patient-notifications.blade.php b/resources/views/patient-notifications.blade.php new file mode 100644 index 0000000..b965004 --- /dev/null +++ b/resources/views/patient-notifications.blade.php @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + Patient Acceptance + + +
+ @include('client-sidebar') +
+

+
Notifications
+

+ +
+ @if ($notifications->count() > 0) +
    + @foreach ($notifications as $notification) +
  • +
    +
    + {{ $notification->message }} +
    + {{ $notification->created_at->diffForHumans() }} +
    +
    +
  • + @endforeach +
+ @else +

No notifications found.

+ @endif +
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/resources/views/privacy-policy-admin.blade.php b/resources/views/privacy-policy-admin.blade.php new file mode 100644 index 0000000..30ea661 --- /dev/null +++ b/resources/views/privacy-policy-admin.blade.php @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + Privacy & Policy + + + @include('admin-sidebar') +
+
+

Privacy Policy for Aigo

+ +

At Aigo , accessible from aigo.w333zard.my.id/, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by Aigo and how we use it.

+ +

If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us.

+ +

Log Files

+ +

Aigo follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services' analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information. Our Privacy Policy was created with the help of the Privacy Policy Generator.

+ +

Cookies and Web Beacons

+ +

Like any other website, Aigo uses "cookies". These cookies are used to store information including visitors' preferences, and the pages on the website that the visitor accessed or visited. The information is used to optimize the users' experience by customizing our web page content based on visitors' browser type and/or other information.

+ +

For more general information on cookies, please read the "Cookies" article from the Privacy Policy Generator.

+ + + +

Privacy Policies

+ +

You may consult this list to find the Privacy Policy for each of the advertising partners of Aigo .

+ +

Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on Aigo , which are sent directly to users' browser. They automatically receive your IP address when this occurs. These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit.

+ +

Note that Aigo has no access to or control over these cookies that are used by third-party advertisers.

+ +

Third Party Privacy Policies

+ +

Aigo 's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt-out of certain options.

+ +

You can choose to disable cookies through your individual browser options. To know more detailed information about cookie management with specific web browsers, it can be found at the browsers' respective websites. What Are Cookies?

+ +

Children's Information

+ +

Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.

+ +

Aigo does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.

+ +

Online Privacy Policy Only

+ +

This Privacy Policy applies only to our online activities and is valid for visitors to our website with regards to the information that they shared and/or collect in Aigo . This policy is not applicable to any information collected offline or via channels other than this website.

+ +

Consent

+ +

By using our website, you hereby consent to our Privacy Policy and agree to its Terms and Conditions.

+
+
+ + + + + \ No newline at end of file diff --git a/resources/views/privacy-policy-client.blade.php b/resources/views/privacy-policy-client.blade.php new file mode 100644 index 0000000..1a44fc1 --- /dev/null +++ b/resources/views/privacy-policy-client.blade.php @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + Privacy & Policy + + + @include('client-sidebar') +
+
+

Privacy Policy for Aigo

+ +

At Aigo , accessible from aigo.w333zard.my.id/, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by Aigo and how we use it.

+ +

If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us.

+ +

Log Files

+ +

Aigo follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services' analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information. Our Privacy Policy was created with the help of the Privacy Policy Generator.

+ +

Cookies and Web Beacons

+ +

Like any other website, Aigo uses "cookies". These cookies are used to store information including visitors' preferences, and the pages on the website that the visitor accessed or visited. The information is used to optimize the users' experience by customizing our web page content based on visitors' browser type and/or other information.

+ +

For more general information on cookies, please read the "Cookies" article from the Privacy Policy Generator.

+ + + +

Privacy Policies

+ +

You may consult this list to find the Privacy Policy for each of the advertising partners of Aigo .

+ +

Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on Aigo , which are sent directly to users' browser. They automatically receive your IP address when this occurs. These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit.

+ +

Note that Aigo has no access to or control over these cookies that are used by third-party advertisers.

+ +

Third Party Privacy Policies

+ +

Aigo 's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt-out of certain options.

+ +

You can choose to disable cookies through your individual browser options. To know more detailed information about cookie management with specific web browsers, it can be found at the browsers' respective websites. What Are Cookies?

+ +

Children's Information

+ +

Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.

+ +

Aigo does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.

+ +

Online Privacy Policy Only

+ +

This Privacy Policy applies only to our online activities and is valid for visitors to our website with regards to the information that they shared and/or collect in Aigo . This policy is not applicable to any information collected offline or via channels other than this website.

+ +

Consent

+ +

By using our website, you hereby consent to our Privacy Policy and agree to its Terms and Conditions.

+
+
+ + + + + \ No newline at end of file diff --git a/resources/views/privacy-policy-doctor.blade.php b/resources/views/privacy-policy-doctor.blade.php new file mode 100644 index 0000000..3b3b981 --- /dev/null +++ b/resources/views/privacy-policy-doctor.blade.php @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + Privacy & Policy + + + @include('doctor-sidebar') +
+
+

Privacy Policy for Aigo

+ +

At Aigo , accessible from aigo.w333zard.my.id/, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by Aigo and how we use it.

+ +

If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us.

+ +

Log Files

+ +

Aigo follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services' analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information. Our Privacy Policy was created with the help of the Privacy Policy Generator.

+ +

Cookies and Web Beacons

+ +

Like any other website, Aigo uses "cookies". These cookies are used to store information including visitors' preferences, and the pages on the website that the visitor accessed or visited. The information is used to optimize the users' experience by customizing our web page content based on visitors' browser type and/or other information.

+ +

For more general information on cookies, please read the "Cookies" article from the Privacy Policy Generator.

+ + + +

Privacy Policies

+ +

You may consult this list to find the Privacy Policy for each of the advertising partners of Aigo .

+ +

Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on Aigo , which are sent directly to users' browser. They automatically receive your IP address when this occurs. These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit.

+ +

Note that Aigo has no access to or control over these cookies that are used by third-party advertisers.

+ +

Third Party Privacy Policies

+ +

Aigo 's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt-out of certain options.

+ +

You can choose to disable cookies through your individual browser options. To know more detailed information about cookie management with specific web browsers, it can be found at the browsers' respective websites. What Are Cookies?

+ +

Children's Information

+ +

Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.

+ +

Aigo does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.

+ +

Online Privacy Policy Only

+ +

This Privacy Policy applies only to our online activities and is valid for visitors to our website with regards to the information that they shared and/or collect in Aigo . This policy is not applicable to any information collected offline or via channels other than this website.

+ +

Consent

+ +

By using our website, you hereby consent to our Privacy Policy and agree to its Terms and Conditions.

+
+
+ + + + + \ No newline at end of file diff --git a/resources/views/terms-con-admin.blade.php b/resources/views/terms-con-admin.blade.php new file mode 100644 index 0000000..cc13a23 --- /dev/null +++ b/resources/views/terms-con-admin.blade.php @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + Terms and Conditions + + + @include('admin-sidebar') +
+
+

Terms and Conditions

+ +

Welcome to Aigo!

+ +

These terms and conditions outline the rules and regulations for the use of Aigo's Website, located at aigo.w333zard.my.id/.

+ +

By accessing this website we assume you accept these terms and conditions. Do not continue to use Aigo if you do not agree to take all of the terms and conditions stated on this page.

+ +

The following terminology applies to these Terms and Conditions, Privacy Statement and Disclaimer Notice and all Agreements: "Client", "You" and "Your" refers to you, the person log on this website and compliant to the Company’s terms and conditions. "The Company", "Ourselves", "We", "Our" and "Us", refers to our Company. "Party", "Parties", or "Us", refers to both the Client and ourselves. All terms refer to the offer, acceptance and consideration of payment necessary to undertake the process of our assistance to the Client in the most appropriate manner for the express purpose of meeting the Client’s needs in respect of provision of the Company’s stated services, in accordance with and subject to, prevailing law of Netherlands. Any use of the above terminology or other words in the singular, plural, capitalization and/or he/she or they, are taken as interchangeable and therefore as referring to same. Our Terms and Conditions were created with the help of the Terms & Conditions Generator.

+ +

Cookies

+ +

We employ the use of cookies. By accessing Aigo, you agreed to use cookies in agreement with the Aigo's Privacy Policy.

+ +

Most interactive websites use cookies to let us retrieve the user's details for each visit. Cookies are used by our website to enable the functionality of certain areas to make it easier for people visiting our website. Some of our affiliate/advertising partners may also use cookies.

+ +

License

+ +

Unless otherwise stated, Aigo and/or its licensors own the intellectual property rights for all material on Aigo. All intellectual property rights are reserved. You may access this from Aigo for your own personal use subjected to restrictions set in these terms and conditions.

+ +

You must not:

+
    +
  • Republish material from Aigo
  • +
  • Sell, rent or sub-license material from Aigo
  • +
  • Reproduce, duplicate or copy material from Aigo
  • +
  • Redistribute content from Aigo
  • +
+ +

This Agreement shall begin on the date hereof.

+ +

Parts of this website offer an opportunity for users to post and exchange opinions and information in certain areas of the website. Aigo does not filter, edit, publish or review Comments prior to their presence on the website. Comments do not reflect the views and opinions of Aigo,its agents and/or affiliates. Comments reflect the views and opinions of the person who post their views and opinions. To the extent permitted by applicable laws, Aigo shall not be liable for the Comments or for any liability, damages or expenses caused and/or suffered as a result of any use of and/or posting of and/or appearance of the Comments on this website.

+ +

Aigo reserves the right to monitor all Comments and to remove any Comments which can be considered inappropriate, offensive or causes breach of these Terms and Conditions.

+ +

You warrant and represent that:

+ +
    +
  • You are entitled to post the Comments on our website and have all necessary licenses and consents to do so;
  • +
  • The Comments do not invade any intellectual property right, including without limitation copyright, patent or trademark of any third party;
  • +
  • The Comments do not contain any defamatory, libelous, offensive, indecent or otherwise unlawful material which is an invasion of privacy
  • +
  • The Comments will not be used to solicit or promote business or custom or present commercial activities or unlawful activity.
  • +
+ +

You hereby grant Aigo a non-exclusive license to use, reproduce, edit and authorize others to use, reproduce and edit any of your Comments in any and all forms, formats or media.

+ +

Hyperlinking to our Content

+ +

The following organizations may link to our Website without prior written approval:

+ +
    +
  • Government agencies;
  • +
  • Search engines;
  • +
  • News organizations;
  • +
  • Online directory distributors may link to our Website in the same manner as they hyperlink to the Websites of other listed businesses; and
  • +
  • System wide Accredited Businesses except soliciting non-profit organizations, charity shopping malls, and charity fundraising groups which may not hyperlink to our Web site.
  • +
+ +

These organizations may link to our home page, to publications or to other Website information so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products and/or services; and (c) fits within the context of the linking party's site.

+ +

We may consider and approve other link requests from the following types of organizations:

+ +
    +
  • commonly-known consumer and/or business information sources;
  • +
  • dot.com community sites;
  • +
  • associations or other groups representing charities;
  • +
  • online directory distributors;
  • +
  • internet portals;
  • +
  • accounting, law and consulting firms; and
  • +
  • educational institutions and trade associations.
  • +
+ +

We will approve link requests from these organizations if we decide that: (a) the link would not make us look unfavorably to ourselves or to our accredited businesses; (b) the organization does not have any negative records with us; (c) the benefit to us from the visibility of the hyperlink compensates the absence of Aigo; and (d) the link is in the context of general resource information.

+ +

These organizations may link to our home page so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products or services; and (c) fits within the context of the linking party's site.

+ +

If you are one of the organizations listed in paragraph 2 above and are interested in linking to our website, you must inform us by sending an e-mail to Aigo. Please include your name, your organization name, contact information as well as the URL of your site, a list of any URLs from which you intend to link to our Website, and a list of the URLs on our site to which you would like to link. Wait 2-3 weeks for a response.

+ +

Approved organizations may hyperlink to our Website as follows:

+ +
    +
  • By use of our corporate name; or
  • +
  • By use of the uniform resource locator being linked to; or
  • +
  • By use of any other description of our Website being linked to that makes sense within the context and format of content on the linking party's site.
  • +
+ +

No use of Aigo's logo or other artwork will be allowed for linking absent a trademark license agreement.

+ +

iFrames

+ +

Without prior approval and written permission, you may not create frames around our Webpages that alter in any way the visual presentation or appearance of our Website.

+ +

Content Liability

+ +

We shall not be hold responsible for any content that appears on your Website. You agree to protect and defend us against all claims that is rising on your Website. No link(s) should appear on any Website that may be interpreted as libelous, obscene or criminal, or which infringes, otherwise violates, or advocates the infringement or other violation of, any third party rights.

+ +

Reservation of Rights

+ +

We reserve the right to request that you remove all links or any particular link to our Website. You approve to immediately remove all links to our Website upon request. We also reserve the right to amen these terms and conditions and it's linking policy at any time. By continuously linking to our Website, you agree to be bound to and follow these linking terms and conditions.

+ +

Removal of links from our website

+ +

If you find any link on our Website that is offensive for any reason, you are free to contact and inform us any moment. We will consider requests to remove links but we are not obligated to or so or to respond to you directly.

+ +

We do not ensure that the information on this website is correct, we do not warrant its completeness or accuracy; nor do we promise to ensure that the website remains available or that the material on the website is kept up to date.

+ +

Disclaimer

+ +

To the maximum extent permitted by applicable law, we exclude all representations, warranties and conditions relating to our website and the use of this website. Nothing in this disclaimer will:

+ +
    +
  • limit or exclude our or your liability for death or personal injury;
  • +
  • limit or exclude our or your liability for fraud or fraudulent misrepresentation;
  • +
  • limit any of our or your liabilities in any way that is not permitted under applicable law; or
  • +
  • exclude any of our or your liabilities that may not be excluded under applicable law.
  • +
+ +

The limitations and prohibitions of liability set in this Section and elsewhere in this disclaimer: (a) are subject to the preceding paragraph; and (b) govern all liabilities arising under the disclaimer, including liabilities arising in contract, in tort and for breach of statutory duty.

+ +

As long as the website and the information and services on the website are provided free of charge, we will not be liable for any loss or damage of any nature.

+
+
+ + + + + \ No newline at end of file diff --git a/resources/views/terms-con-client.blade.php b/resources/views/terms-con-client.blade.php new file mode 100644 index 0000000..6269bed --- /dev/null +++ b/resources/views/terms-con-client.blade.php @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + Terms and Conditions + + + @include('client-sidebar') +
+
+

Terms and Conditions

+ +

Welcome to Aigo!

+ +

These terms and conditions outline the rules and regulations for the use of Aigo's Website, located at aigo.w333zard.my.id/.

+ +

By accessing this website we assume you accept these terms and conditions. Do not continue to use Aigo if you do not agree to take all of the terms and conditions stated on this page.

+ +

The following terminology applies to these Terms and Conditions, Privacy Statement and Disclaimer Notice and all Agreements: "Client", "You" and "Your" refers to you, the person log on this website and compliant to the Company’s terms and conditions. "The Company", "Ourselves", "We", "Our" and "Us", refers to our Company. "Party", "Parties", or "Us", refers to both the Client and ourselves. All terms refer to the offer, acceptance and consideration of payment necessary to undertake the process of our assistance to the Client in the most appropriate manner for the express purpose of meeting the Client’s needs in respect of provision of the Company’s stated services, in accordance with and subject to, prevailing law of Netherlands. Any use of the above terminology or other words in the singular, plural, capitalization and/or he/she or they, are taken as interchangeable and therefore as referring to same. Our Terms and Conditions were created with the help of the Terms & Conditions Generator.

+ +

Cookies

+ +

We employ the use of cookies. By accessing Aigo, you agreed to use cookies in agreement with the Aigo's Privacy Policy.

+ +

Most interactive websites use cookies to let us retrieve the user's details for each visit. Cookies are used by our website to enable the functionality of certain areas to make it easier for people visiting our website. Some of our affiliate/advertising partners may also use cookies.

+ +

License

+ +

Unless otherwise stated, Aigo and/or its licensors own the intellectual property rights for all material on Aigo. All intellectual property rights are reserved. You may access this from Aigo for your own personal use subjected to restrictions set in these terms and conditions.

+ +

You must not:

+
    +
  • Republish material from Aigo
  • +
  • Sell, rent or sub-license material from Aigo
  • +
  • Reproduce, duplicate or copy material from Aigo
  • +
  • Redistribute content from Aigo
  • +
+ +

This Agreement shall begin on the date hereof.

+ +

Parts of this website offer an opportunity for users to post and exchange opinions and information in certain areas of the website. Aigo does not filter, edit, publish or review Comments prior to their presence on the website. Comments do not reflect the views and opinions of Aigo,its agents and/or affiliates. Comments reflect the views and opinions of the person who post their views and opinions. To the extent permitted by applicable laws, Aigo shall not be liable for the Comments or for any liability, damages or expenses caused and/or suffered as a result of any use of and/or posting of and/or appearance of the Comments on this website.

+ +

Aigo reserves the right to monitor all Comments and to remove any Comments which can be considered inappropriate, offensive or causes breach of these Terms and Conditions.

+ +

You warrant and represent that:

+ +
    +
  • You are entitled to post the Comments on our website and have all necessary licenses and consents to do so;
  • +
  • The Comments do not invade any intellectual property right, including without limitation copyright, patent or trademark of any third party;
  • +
  • The Comments do not contain any defamatory, libelous, offensive, indecent or otherwise unlawful material which is an invasion of privacy
  • +
  • The Comments will not be used to solicit or promote business or custom or present commercial activities or unlawful activity.
  • +
+ +

You hereby grant Aigo a non-exclusive license to use, reproduce, edit and authorize others to use, reproduce and edit any of your Comments in any and all forms, formats or media.

+ +

Hyperlinking to our Content

+ +

The following organizations may link to our Website without prior written approval:

+ +
    +
  • Government agencies;
  • +
  • Search engines;
  • +
  • News organizations;
  • +
  • Online directory distributors may link to our Website in the same manner as they hyperlink to the Websites of other listed businesses; and
  • +
  • System wide Accredited Businesses except soliciting non-profit organizations, charity shopping malls, and charity fundraising groups which may not hyperlink to our Web site.
  • +
+ +

These organizations may link to our home page, to publications or to other Website information so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products and/or services; and (c) fits within the context of the linking party's site.

+ +

We may consider and approve other link requests from the following types of organizations:

+ +
    +
  • commonly-known consumer and/or business information sources;
  • +
  • dot.com community sites;
  • +
  • associations or other groups representing charities;
  • +
  • online directory distributors;
  • +
  • internet portals;
  • +
  • accounting, law and consulting firms; and
  • +
  • educational institutions and trade associations.
  • +
+ +

We will approve link requests from these organizations if we decide that: (a) the link would not make us look unfavorably to ourselves or to our accredited businesses; (b) the organization does not have any negative records with us; (c) the benefit to us from the visibility of the hyperlink compensates the absence of Aigo; and (d) the link is in the context of general resource information.

+ +

These organizations may link to our home page so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products or services; and (c) fits within the context of the linking party's site.

+ +

If you are one of the organizations listed in paragraph 2 above and are interested in linking to our website, you must inform us by sending an e-mail to Aigo. Please include your name, your organization name, contact information as well as the URL of your site, a list of any URLs from which you intend to link to our Website, and a list of the URLs on our site to which you would like to link. Wait 2-3 weeks for a response.

+ +

Approved organizations may hyperlink to our Website as follows:

+ +
    +
  • By use of our corporate name; or
  • +
  • By use of the uniform resource locator being linked to; or
  • +
  • By use of any other description of our Website being linked to that makes sense within the context and format of content on the linking party's site.
  • +
+ +

No use of Aigo's logo or other artwork will be allowed for linking absent a trademark license agreement.

+ +

iFrames

+ +

Without prior approval and written permission, you may not create frames around our Webpages that alter in any way the visual presentation or appearance of our Website.

+ +

Content Liability

+ +

We shall not be hold responsible for any content that appears on your Website. You agree to protect and defend us against all claims that is rising on your Website. No link(s) should appear on any Website that may be interpreted as libelous, obscene or criminal, or which infringes, otherwise violates, or advocates the infringement or other violation of, any third party rights.

+ +

Reservation of Rights

+ +

We reserve the right to request that you remove all links or any particular link to our Website. You approve to immediately remove all links to our Website upon request. We also reserve the right to amen these terms and conditions and it's linking policy at any time. By continuously linking to our Website, you agree to be bound to and follow these linking terms and conditions.

+ +

Removal of links from our website

+ +

If you find any link on our Website that is offensive for any reason, you are free to contact and inform us any moment. We will consider requests to remove links but we are not obligated to or so or to respond to you directly.

+ +

We do not ensure that the information on this website is correct, we do not warrant its completeness or accuracy; nor do we promise to ensure that the website remains available or that the material on the website is kept up to date.

+ +

Disclaimer

+ +

To the maximum extent permitted by applicable law, we exclude all representations, warranties and conditions relating to our website and the use of this website. Nothing in this disclaimer will:

+ +
    +
  • limit or exclude our or your liability for death or personal injury;
  • +
  • limit or exclude our or your liability for fraud or fraudulent misrepresentation;
  • +
  • limit any of our or your liabilities in any way that is not permitted under applicable law; or
  • +
  • exclude any of our or your liabilities that may not be excluded under applicable law.
  • +
+ +

The limitations and prohibitions of liability set in this Section and elsewhere in this disclaimer: (a) are subject to the preceding paragraph; and (b) govern all liabilities arising under the disclaimer, including liabilities arising in contract, in tort and for breach of statutory duty.

+ +

As long as the website and the information and services on the website are provided free of charge, we will not be liable for any loss or damage of any nature.

+
+
+ + + + + \ No newline at end of file diff --git a/resources/views/terms-con-doctor.blade.php b/resources/views/terms-con-doctor.blade.php new file mode 100644 index 0000000..ba505ae --- /dev/null +++ b/resources/views/terms-con-doctor.blade.php @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + Terms and Conditions + + + @include('doctor-sidebar') +
+
+

Terms and Conditions

+ +

Welcome to Aigo!

+ +

These terms and conditions outline the rules and regulations for the use of Aigo's Website, located at aigo.w333zard.my.id/.

+ +

By accessing this website we assume you accept these terms and conditions. Do not continue to use Aigo if you do not agree to take all of the terms and conditions stated on this page.

+ +

The following terminology applies to these Terms and Conditions, Privacy Statement and Disclaimer Notice and all Agreements: "Client", "You" and "Your" refers to you, the person log on this website and compliant to the Company’s terms and conditions. "The Company", "Ourselves", "We", "Our" and "Us", refers to our Company. "Party", "Parties", or "Us", refers to both the Client and ourselves. All terms refer to the offer, acceptance and consideration of payment necessary to undertake the process of our assistance to the Client in the most appropriate manner for the express purpose of meeting the Client’s needs in respect of provision of the Company’s stated services, in accordance with and subject to, prevailing law of Netherlands. Any use of the above terminology or other words in the singular, plural, capitalization and/or he/she or they, are taken as interchangeable and therefore as referring to same. Our Terms and Conditions were created with the help of the Terms & Conditions Generator.

+ +

Cookies

+ +

We employ the use of cookies. By accessing Aigo, you agreed to use cookies in agreement with the Aigo's Privacy Policy.

+ +

Most interactive websites use cookies to let us retrieve the user's details for each visit. Cookies are used by our website to enable the functionality of certain areas to make it easier for people visiting our website. Some of our affiliate/advertising partners may also use cookies.

+ +

License

+ +

Unless otherwise stated, Aigo and/or its licensors own the intellectual property rights for all material on Aigo. All intellectual property rights are reserved. You may access this from Aigo for your own personal use subjected to restrictions set in these terms and conditions.

+ +

You must not:

+
    +
  • Republish material from Aigo
  • +
  • Sell, rent or sub-license material from Aigo
  • +
  • Reproduce, duplicate or copy material from Aigo
  • +
  • Redistribute content from Aigo
  • +
+ +

This Agreement shall begin on the date hereof.

+ +

Parts of this website offer an opportunity for users to post and exchange opinions and information in certain areas of the website. Aigo does not filter, edit, publish or review Comments prior to their presence on the website. Comments do not reflect the views and opinions of Aigo,its agents and/or affiliates. Comments reflect the views and opinions of the person who post their views and opinions. To the extent permitted by applicable laws, Aigo shall not be liable for the Comments or for any liability, damages or expenses caused and/or suffered as a result of any use of and/or posting of and/or appearance of the Comments on this website.

+ +

Aigo reserves the right to monitor all Comments and to remove any Comments which can be considered inappropriate, offensive or causes breach of these Terms and Conditions.

+ +

You warrant and represent that:

+ +
    +
  • You are entitled to post the Comments on our website and have all necessary licenses and consents to do so;
  • +
  • The Comments do not invade any intellectual property right, including without limitation copyright, patent or trademark of any third party;
  • +
  • The Comments do not contain any defamatory, libelous, offensive, indecent or otherwise unlawful material which is an invasion of privacy
  • +
  • The Comments will not be used to solicit or promote business or custom or present commercial activities or unlawful activity.
  • +
+ +

You hereby grant Aigo a non-exclusive license to use, reproduce, edit and authorize others to use, reproduce and edit any of your Comments in any and all forms, formats or media.

+ +

Hyperlinking to our Content

+ +

The following organizations may link to our Website without prior written approval:

+ +
    +
  • Government agencies;
  • +
  • Search engines;
  • +
  • News organizations;
  • +
  • Online directory distributors may link to our Website in the same manner as they hyperlink to the Websites of other listed businesses; and
  • +
  • System wide Accredited Businesses except soliciting non-profit organizations, charity shopping malls, and charity fundraising groups which may not hyperlink to our Web site.
  • +
+ +

These organizations may link to our home page, to publications or to other Website information so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products and/or services; and (c) fits within the context of the linking party's site.

+ +

We may consider and approve other link requests from the following types of organizations:

+ +
    +
  • commonly-known consumer and/or business information sources;
  • +
  • dot.com community sites;
  • +
  • associations or other groups representing charities;
  • +
  • online directory distributors;
  • +
  • internet portals;
  • +
  • accounting, law and consulting firms; and
  • +
  • educational institutions and trade associations.
  • +
+ +

We will approve link requests from these organizations if we decide that: (a) the link would not make us look unfavorably to ourselves or to our accredited businesses; (b) the organization does not have any negative records with us; (c) the benefit to us from the visibility of the hyperlink compensates the absence of Aigo; and (d) the link is in the context of general resource information.

+ +

These organizations may link to our home page so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products or services; and (c) fits within the context of the linking party's site.

+ +

If you are one of the organizations listed in paragraph 2 above and are interested in linking to our website, you must inform us by sending an e-mail to Aigo. Please include your name, your organization name, contact information as well as the URL of your site, a list of any URLs from which you intend to link to our Website, and a list of the URLs on our site to which you would like to link. Wait 2-3 weeks for a response.

+ +

Approved organizations may hyperlink to our Website as follows:

+ +
    +
  • By use of our corporate name; or
  • +
  • By use of the uniform resource locator being linked to; or
  • +
  • By use of any other description of our Website being linked to that makes sense within the context and format of content on the linking party's site.
  • +
+ +

No use of Aigo's logo or other artwork will be allowed for linking absent a trademark license agreement.

+ +

iFrames

+ +

Without prior approval and written permission, you may not create frames around our Webpages that alter in any way the visual presentation or appearance of our Website.

+ +

Content Liability

+ +

We shall not be hold responsible for any content that appears on your Website. You agree to protect and defend us against all claims that is rising on your Website. No link(s) should appear on any Website that may be interpreted as libelous, obscene or criminal, or which infringes, otherwise violates, or advocates the infringement or other violation of, any third party rights.

+ +

Reservation of Rights

+ +

We reserve the right to request that you remove all links or any particular link to our Website. You approve to immediately remove all links to our Website upon request. We also reserve the right to amen these terms and conditions and it's linking policy at any time. By continuously linking to our Website, you agree to be bound to and follow these linking terms and conditions.

+ +

Removal of links from our website

+ +

If you find any link on our Website that is offensive for any reason, you are free to contact and inform us any moment. We will consider requests to remove links but we are not obligated to or so or to respond to you directly.

+ +

We do not ensure that the information on this website is correct, we do not warrant its completeness or accuracy; nor do we promise to ensure that the website remains available or that the material on the website is kept up to date.

+ +

Disclaimer

+ +

To the maximum extent permitted by applicable law, we exclude all representations, warranties and conditions relating to our website and the use of this website. Nothing in this disclaimer will:

+ +
    +
  • limit or exclude our or your liability for death or personal injury;
  • +
  • limit or exclude our or your liability for fraud or fraudulent misrepresentation;
  • +
  • limit any of our or your liabilities in any way that is not permitted under applicable law; or
  • +
  • exclude any of our or your liabilities that may not be excluded under applicable law.
  • +
+ +

The limitations and prohibitions of liability set in this Section and elsewhere in this disclaimer: (a) are subject to the preceding paragraph; and (b) govern all liabilities arising under the disclaimer, including liabilities arising in contract, in tort and for breach of statutory duty.

+ +

As long as the website and the information and services on the website are provided free of charge, we will not be liable for any loss or damage of any nature.

+
+
+ + + \ No newline at end of file diff --git a/resources/views/update-user.blade.php b/resources/views/update-user.blade.php new file mode 100644 index 0000000..b282d3e --- /dev/null +++ b/resources/views/update-user.blade.php @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + Update User + + +
+ @include('admin-sidebar') +
+
+
+

Update User Data

+
+
+
+
+ @csrf + {{-- ROW 1 --}} +
+ {{-- Nama --}} +
+
+ + +
+
+ {{-- User Role --}} +
+
+ + +
+
+
+ {{-- ROW 2 --}} +
+ {{-- Telepon --}} +
+
+ + +
+
+ {{-- Email --}} +
+
+ + +
+
+
+ {{-- ROW 3 --}} +
+ {{-- Alamat --}} +
+
+ + +
+
+ {{-- Gender --}} +
+
+ + +
+
+
+
+
+ +
+
+
+
+
+
+ + + + + diff --git a/resources/views/vendor/Chatify/layouts/error_log b/resources/views/vendor/Chatify/layouts/error_log new file mode 100644 index 0000000..e4be030 --- /dev/null +++ b/resources/views/vendor/Chatify/layouts/error_log @@ -0,0 +1,188 @@ +[03-Aug-2024 01:35:15 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[03-Aug-2024 01:35:15 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[03-Aug-2024 01:35:15 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[03-Aug-2024 01:35:15 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[03-Aug-2024 01:35:15 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[03-Aug-2024 01:35:15 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[03-Aug-2024 02:03:37 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[03-Aug-2024 02:03:37 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[03-Aug-2024 02:03:37 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[03-Aug-2024 02:03:37 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[03-Aug-2024 02:03:37 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[03-Aug-2024 02:03:37 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[31-Aug-2024 19:15:38 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[31-Aug-2024 19:15:38 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[31-Aug-2024 19:15:38 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[31-Aug-2024 19:15:38 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[01-Sep-2024 09:57:37 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[01-Sep-2024 09:57:37 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[15-Sep-2024 00:42:34 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[15-Sep-2024 00:42:34 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[17-Sep-2024 19:36:21 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[17-Sep-2024 19:36:21 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[17-Sep-2024 19:36:21 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[17-Sep-2024 19:36:21 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[09-Oct-2024 20:35:12 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[09-Oct-2024 20:35:12 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[09-Oct-2024 20:35:12 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[09-Oct-2024 20:35:12 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[07-Nov-2024 03:50:52 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[07-Nov-2024 03:50:52 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[12-Nov-2024 15:35:44 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[12-Nov-2024 15:35:44 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[12-Nov-2024 15:35:44 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[12-Nov-2024 15:35:44 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[22-Nov-2024 23:16:05 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[22-Nov-2024 23:16:05 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[22-Nov-2024 23:16:05 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[22-Nov-2024 23:16:05 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[22-Nov-2024 23:16:05 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[22-Nov-2024 23:16:05 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[12-Dec-2024 10:56:37 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[12-Dec-2024 10:56:37 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[12-Dec-2024 10:56:37 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[12-Dec-2024 10:56:37 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[09-Jan-2025 06:27:40 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[09-Jan-2025 06:27:40 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[18-Jan-2025 02:20:17 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[18-Jan-2025 02:20:17 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[18-Jan-2025 02:20:17 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[18-Jan-2025 02:20:17 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[24-Jan-2025 16:44:35 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[24-Jan-2025 16:44:35 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[24-Jan-2025 16:52:20 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[24-Jan-2025 16:52:20 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[24-Jan-2025 16:52:20 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[24-Jan-2025 16:52:20 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[16-Feb-2025 05:15:15 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[16-Feb-2025 05:15:15 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[16-Feb-2025 05:15:15 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[16-Feb-2025 05:15:15 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[17-Feb-2025 13:57:07 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[17-Feb-2025 13:57:07 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[17-Feb-2025 14:00:38 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[17-Feb-2025 14:00:38 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[17-Feb-2025 14:00:38 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[17-Feb-2025 14:00:38 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[17-Feb-2025 14:00:58 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[17-Feb-2025 14:00:58 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[17-Feb-2025 14:05:35 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[17-Feb-2025 14:05:35 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[17-Feb-2025 14:05:35 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[17-Feb-2025 14:05:35 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[19-Feb-2025 14:08:30 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[19-Feb-2025 14:08:30 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[19-Feb-2025 14:08:30 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[19-Feb-2025 14:08:30 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[09-Mar-2025 20:13:03 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[09-Mar-2025 20:13:03 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[20-Mar-2025 02:58:15 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[20-Mar-2025 02:58:15 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[20-Mar-2025 02:58:15 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[20-Mar-2025 02:58:15 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[10-Apr-2025 12:50:27 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[10-Apr-2025 12:50:27 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[22-Apr-2025 19:12:31 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[22-Apr-2025 19:12:31 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[22-Apr-2025 19:12:31 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[22-Apr-2025 19:12:31 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[09-May-2025 12:46:28 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[09-May-2025 12:46:28 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[10-Jun-2025 16:35:29 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[10-Jun-2025 16:35:29 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[15-Jun-2025 10:17:31 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[15-Jun-2025 10:17:31 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[15-Jun-2025 10:17:31 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[15-Jun-2025 10:17:31 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[09-Jul-2025 19:53:08 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[09-Jul-2025 19:53:08 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[15-Jul-2025 18:44:40 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[15-Jul-2025 18:44:40 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[15-Jul-2025 18:44:40 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[15-Jul-2025 18:44:40 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[02-Aug-2025 10:28:12 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[02-Aug-2025 10:28:12 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[16-Aug-2025 13:51:38 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[16-Aug-2025 13:51:38 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[16-Aug-2025 13:51:38 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[16-Aug-2025 13:51:38 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[19-Aug-2025 17:13:27 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[19-Aug-2025 17:13:27 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[10-Sep-2025 16:09:37 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[10-Sep-2025 16:09:37 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[13-Sep-2025 13:19:34 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[13-Sep-2025 13:19:34 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[13-Sep-2025 13:19:34 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[13-Sep-2025 13:19:34 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[02-Oct-2025 22:31:46 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[02-Oct-2025 22:31:46 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[11-Oct-2025 03:34:28 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[11-Oct-2025 03:34:28 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[11-Oct-2025 03:34:28 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[11-Oct-2025 03:34:28 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[16-Oct-2025 20:24:09 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[16-Oct-2025 20:24:09 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[16-Oct-2025 20:24:09 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[16-Oct-2025 20:24:09 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[27-Oct-2025 17:49:23 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[27-Oct-2025 17:49:23 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[27-Oct-2025 17:49:23 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[27-Oct-2025 17:49:23 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[27-Oct-2025 18:06:03 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[27-Oct-2025 18:06:03 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[15-Nov-2025 03:21:55 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[15-Nov-2025 03:21:55 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[18-Nov-2025 00:04:02 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[18-Nov-2025 00:04:02 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[18-Nov-2025 00:04:02 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[18-Nov-2025 00:04:02 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[02-Jan-2026 15:44:12 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[02-Jan-2026 15:44:12 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[02-Jan-2026 16:12:03 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[02-Jan-2026 16:12:03 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[02-Jan-2026 16:12:03 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[02-Jan-2026 16:12:03 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[16-Jan-2026 06:40:32 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[16-Jan-2026 06:40:32 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[08-Feb-2026 00:31:42 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[08-Feb-2026 00:31:42 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[08-Feb-2026 00:31:42 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[08-Feb-2026 00:31:42 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[20-Feb-2026 06:26:53 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[20-Feb-2026 06:26:53 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[20-Feb-2026 06:26:53 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[20-Feb-2026 06:26:53 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[23-Feb-2026 08:58:13 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[23-Feb-2026 08:58:13 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[06-Mar-2026 09:20:46 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[06-Mar-2026 09:20:46 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[06-Mar-2026 09:51:27 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[06-Mar-2026 09:51:27 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[06-Mar-2026 09:51:27 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[06-Mar-2026 09:51:27 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[07-Mar-2026 06:38:34 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[07-Mar-2026 06:38:34 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[07-Mar-2026 06:38:34 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[07-Mar-2026 06:38:34 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[17-Mar-2026 01:08:22 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[17-Mar-2026 01:08:22 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[08-Apr-2026 05:44:17 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[08-Apr-2026 05:44:17 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[08-Apr-2026 05:44:17 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[08-Apr-2026 05:44:17 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[09-Apr-2026 09:57:14 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[09-Apr-2026 09:57:14 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[15-Apr-2026 13:48:16 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[15-Apr-2026 13:48:16 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[15-Apr-2026 13:48:16 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[15-Apr-2026 13:48:16 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[28-Apr-2026 20:41:36 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[28-Apr-2026 20:41:36 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[28-Apr-2026 20:41:36 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[28-Apr-2026 20:41:36 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[28-Apr-2026 20:42:30 UTC] PHP Warning: Undefined variable $lastMessage in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[28-Apr-2026 20:42:30 UTC] PHP Warning: Attempt to read property "body" on null in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php on line 23 +[09-May-2026 12:32:16 UTC] PHP Warning: Undefined variable $seen in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 2 +[09-May-2026 12:32:16 UTC] PHP Warning: Undefined variable $created_at in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 3 +[09-May-2026 12:32:16 UTC] PHP Warning: Undefined variable $isSender in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 +[09-May-2026 12:32:16 UTC] PHP Warning: Undefined variable $timeAgo in /home/humicpro/public_html/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php on line 4 diff --git a/resources/views/vendor/Chatify/layouts/favorite.blade.php b/resources/views/vendor/Chatify/layouts/favorite.blade.php new file mode 100644 index 0000000..ed08f49 --- /dev/null +++ b/resources/views/vendor/Chatify/layouts/favorite.blade.php @@ -0,0 +1,8 @@ +
+ @if($user) +
+
+

{{ strlen($user->name) > 5 ? substr($user->name,0,6).'..' : $user->name }}

+ @endif +
diff --git a/resources/views/vendor/Chatify/layouts/footerLinks.blade.php b/resources/views/vendor/Chatify/layouts/footerLinks.blade.php new file mode 100644 index 0000000..4554023 --- /dev/null +++ b/resources/views/vendor/Chatify/layouts/footerLinks.blade.php @@ -0,0 +1,17 @@ + + + + + diff --git a/resources/views/vendor/Chatify/layouts/headLinks.blade.php b/resources/views/vendor/Chatify/layouts/headLinks.blade.php new file mode 100644 index 0000000..630c934 --- /dev/null +++ b/resources/views/vendor/Chatify/layouts/headLinks.blade.php @@ -0,0 +1,30 @@ +{{ config('chatify.name') }} + +{{-- Meta tags --}} + + + + + + + +{{-- scripts --}} + + + + + + +{{-- styles --}} + + + + + +{{-- Setting messenger primary color to css --}} + diff --git a/resources/views/vendor/Chatify/layouts/info.blade.php b/resources/views/vendor/Chatify/layouts/info.blade.php new file mode 100644 index 0000000..0b0d2ff --- /dev/null +++ b/resources/views/vendor/Chatify/layouts/info.blade.php @@ -0,0 +1,11 @@ +{{-- user info and avatar --}} +
+

{{ config('chatify.name') }}

+ +{{-- shared photos --}} +
+

Shared Photos

+
+
diff --git a/resources/views/vendor/Chatify/layouts/listItem.blade.php b/resources/views/vendor/Chatify/layouts/listItem.blade.php new file mode 100644 index 0000000..a1436ab --- /dev/null +++ b/resources/views/vendor/Chatify/layouts/listItem.blade.php @@ -0,0 +1,90 @@ +{{-- -------------------- Saved Messages -------------------- --}} +@if($get == 'saved') + + + {{-- Avatar side --}} + + {{-- center side --}} + + +
+
+ +
+
+

Saved Messages You

+ Save messages secretly +
+@endif + +{{-- -------------------- Contact list -------------------- --}} +@if($get == 'users' && !!$lastMessage) +body, 'UTF-8', 'UTF-8'); +$lastMessageBody = strlen($lastMessageBody) > 30 ? mb_substr($lastMessageBody, 0, 30, 'UTF-8').'..' : $lastMessageBody; +?> + + + {{-- Avatar side --}} + + {{-- center side --}} + + +
+ @if($user->active_status) + + @endif +
+
+
+

+ {{ strlen($user->name) > 12 ? trim(substr($user->name,0,12)).'..' : $user->name }} + {{ $lastMessage->timeAgo }}

+ + {{-- Last Message user indicator --}} + {!! + $lastMessage->from_id == Auth::user()->id + ? 'You :' + : '' + !!} + {{-- Last message body --}} + @if($lastMessage->attachment == null) + {!! + $lastMessageBody + !!} + @else + Attachment + @endif + + {{-- New messages counter --}} + {!! $unseenCounter > 0 ? "".$unseenCounter."" : '' !!} +
+@endif + +{{-- -------------------- Search Item -------------------- --}} +@if($get == 'search_item') + + + {{-- Avatar side --}} + + {{-- center side --}} + + + +
+
+
+
+

+ {{ strlen($user->name) > 12 ? trim(substr($user->name,0,12)).'..' : $user->name }} +

+@endif + +{{-- -------------------- Shared photos Item -------------------- --}} +@if($get == 'sharedPhoto') +
+@endif + + diff --git a/resources/views/vendor/Chatify/layouts/messageCard.blade.php b/resources/views/vendor/Chatify/layouts/messageCard.blade.php new file mode 100644 index 0000000..6c1719d --- /dev/null +++ b/resources/views/vendor/Chatify/layouts/messageCard.blade.php @@ -0,0 +1,39 @@ + + ".($isSender ? "" : '' )." $timeAgo + "; +?> + +
+ {{-- Delete Message Button --}} + @if ($isSender) +
+ +
+ @endif + {{-- Card --}} +
+ @if (@$attachment->type != 'image' || $message) +
+ {!! ($message == null && $attachment != null && @$attachment->type != 'file') ? $attachment->title : nl2br($message) !!} + {!! $timeAndSeen !!} + {{-- If attachment is a file --}} + @if(@$attachment->type == 'file') + + {{$attachment->title}} + @endif +
+ @endif + @if(@$attachment->type == 'image') +
+
+
{{ $attachment->title }}
+
+
+ {!! $timeAndSeen !!} +
+
+ @endif +
+
diff --git a/resources/views/vendor/Chatify/layouts/modals.blade.php b/resources/views/vendor/Chatify/layouts/modals.blade.php new file mode 100644 index 0000000..504aaac --- /dev/null +++ b/resources/views/vendor/Chatify/layouts/modals.blade.php @@ -0,0 +1,73 @@ +{{-- ---------------------- Image modal box ---------------------- --}} +
+ × + +
+ + {{-- ---------------------- Delete Modal ---------------------- --}} +
+
+
+
Are you sure you want to delete this?
+
You can not undo this action
+ +
+
+
+ {{-- ---------------------- Alert Modal ---------------------- --}} +
+
+
+
+
+ +
+
+
+ {{-- ---------------------- Settings Modal ---------------------- --}} +
+
+
+
+ @csrf + {{--
Update your profile settings
--}} +
+ {{-- Udate profile avatar --}} +
+

+ + {{-- Dark/Light Mode --}} +

+

Dark Mode

+ {{-- change messenger color --}} +

+ {{--

Change {{ config('chatify.name') }} Color

--}} +
+ @foreach (config('chatify.colors') as $color) + + @if (($loop->index + 1) % 5 == 0) +
+ @endif + @endforeach +
+
+ +
+
+
+
diff --git a/resources/views/vendor/Chatify/layouts/sendForm.blade.php b/resources/views/vendor/Chatify/layouts/sendForm.blade.php new file mode 100644 index 0000000..c435734 --- /dev/null +++ b/resources/views/vendor/Chatify/layouts/sendForm.blade.php @@ -0,0 +1,9 @@ +
+
+ @csrf + + + + +
+
diff --git a/resources/views/vendor/Chatify/pages/app-original.php b/resources/views/vendor/Chatify/pages/app-original.php new file mode 100644 index 0000000..e03918a --- /dev/null +++ b/resources/views/vendor/Chatify/pages/app-original.php @@ -0,0 +1,107 @@ +@include('Chatify::layouts.headLinks') +
+ {{-- ----------------------Users/Groups lists side---------------------- --}} +
+ {{-- Header and search bar --}} + + {{-- tabs and lists --}} +
+ {{-- Lists [Users/Group] --}} + {{-- ---------------- [ User Tab ] ---------------- --}} +
+ {{-- Favorites --}} +
+

Favorites

+
+
+ {{-- Saved Messages --}} +

Your Space

+ {!! view('Chatify::layouts.listItem', ['get' => 'saved']) !!} + {{-- Contact --}} +

All Messages

+
+
+ {{-- ---------------- [ Search Tab ] ---------------- --}} +
+ {{-- items --}} +

Search

+
+

Type to search..

+
+
+
+
+ + {{-- ----------------------Messaging side---------------------- --}} +
+ {{-- header title [conversation name] amd buttons --}} + + + {{-- Messaging area --}} +
+
+

Please select a chat to start messaging

+
+ {{-- Typing indicator --}} +
+
+
+ + + + + +
+
+
+ +
+ {{-- Send Message Form --}} + @include('Chatify::layouts.sendForm') +
+ {{-- ---------------------- Info side ---------------------- --}} +
+ {{-- nav actions --}} + + {!! view('Chatify::layouts.info')->render() !!} +
+
+ +@include('Chatify::layouts.modals') +@include('Chatify::layouts.footerLinks') diff --git a/resources/views/vendor/Chatify/pages/app.blade.php b/resources/views/vendor/Chatify/pages/app.blade.php new file mode 100644 index 0000000..f7542d0 --- /dev/null +++ b/resources/views/vendor/Chatify/pages/app.blade.php @@ -0,0 +1,112 @@ +@include('Chatify::layouts.headLinks') +
+ {{-- ----------------------Users/Groups lists side---------------------- --}} +
+ {{-- Header and search bar --}} + + {{-- tabs and lists --}} +
+ {{-- Lists [Users/Group] --}} + {{-- ---------------- [ User Tab ] ---------------- --}} +
+ {{-- Favorites --}} +
+

Favorites

+
+
+ {{-- Saved Messages --}} +

Your Space

+ {!! view('Chatify::layouts.listItem', ['get' => 'saved']) !!} + {{-- Contact --}} +

All Messages

+
+
+ {{-- ---------------- [ Search Tab ] ---------------- --}} +
+ {{-- items --}} +

Search

+
+

Type to search..

+
+
+
+
+ + {{-- ----------------------Messaging side---------------------- --}} +
+ {{-- header title [conversation name] amd buttons --}} + + + {{-- Messaging area --}} +
+
+

Please select a chat to start messaging

+
+ {{-- Typing indicator --}} +
+
+
+ + + + + +
+
+
+ +
+ {{-- Send Message Form --}} + @include('Chatify::layouts.sendForm') +
+ {{-- ---------------------- Info side ---------------------- --}} +
+ {{-- nav actions --}} + + {!! view('Chatify::layouts.info')->render() !!} +
+
+ +@include('Chatify::layouts.modals') +@include('Chatify::layouts.footerLinks') diff --git a/routes/auth.php b/routes/auth.php new file mode 100644 index 0000000..f269771 --- /dev/null +++ b/routes/auth.php @@ -0,0 +1,61 @@ +name('login'); + +Route::middleware('guest')->group(function () { + Route::get('register', [RegisteredUserController::class, 'create']) + ->name('register'); + + Route::post('register', [RegisteredUserController::class, 'store']); + + Route::get('login', [AuthenticatedSessionController::class, 'create']) + ->name('login'); + + Route::post('login', [AuthenticatedSessionController::class, 'store'])->name('store.login'); + + Route::get('forgot-password', [PasswordResetLinkController::class, 'create']) + ->name('password.request'); + + Route::post('forgot-password', [PasswordResetLinkController::class, 'store']) + ->name('password.email'); + + Route::get('reset-password/{token}', [NewPasswordController::class, 'create']) + ->name('password.reset'); + + Route::post('reset-password', [NewPasswordController::class, 'store']) + ->name('password.store'); +}); + +Route::middleware('auth')->group(function () { + Route::get('verify-email', EmailVerificationPromptController::class) + ->name('verification.notice'); + + Route::get('verify-email/{id}/{hash}', VerifyEmailController::class) + ->middleware(['signed', 'throttle:6,1']) + ->name('verification.verify'); + + Route::post('email/verification-notification', [EmailVerificationNotificationController::class, 'store']) + ->middleware('throttle:6,1') + ->name('verification.send'); + + Route::get('confirm-password', [ConfirmablePasswordController::class, 'show']) + ->name('password.confirm'); + + Route::post('confirm-password', [ConfirmablePasswordController::class, 'store']); + + Route::put('password', [PasswordController::class, 'update'])->name('password.update'); + + Route::post('logout', [AuthenticatedSessionController::class, 'destroy']) + ->name('logout'); +}); diff --git a/routes/channels.php b/routes/channels.php new file mode 100644 index 0000000..df2ad28 --- /dev/null +++ b/routes/channels.php @@ -0,0 +1,7 @@ +id === (int) $id; +}); diff --git a/routes/chatify/api.php b/routes/chatify/api.php new file mode 100644 index 0000000..9e3669d --- /dev/null +++ b/routes/chatify/api.php @@ -0,0 +1,75 @@ +name('api.pusher.auth'); + +/** + * Fetch info for specific id [user/group] + */ +Route::post('/idInfo', 'MessagesController@idFetchData')->name('api.idInfo'); + +/** + * Send message route + */ +Route::post('/sendMessage', 'MessagesController@send')->name('api.send.message'); + +/** + * Fetch messages + */ +Route::post('/fetchMessages', 'MessagesController@fetch')->name('api.fetch.messages'); + +/** + * Download attachments route to create a downloadable links + */ +Route::get('/download/{fileName}', 'MessagesController@download')->name('api.'.config('chatify.attachments.download_route_name')); + +/** + * Make messages as seen + */ +Route::post('/makeSeen', 'MessagesController@seen')->name('api.messages.seen'); + +/** + * Get contacts + */ +Route::get('/getContacts', 'MessagesController@getContacts')->name('api.contacts.get'); + +/** + * Star in favorite list + */ +Route::post('/star', 'MessagesController@favorite')->name('api.star'); + +/** + * get favorites list + */ +Route::post('/favorites', 'MessagesController@getFavorites')->name('api.favorites'); + +/** + * Search in messenger + */ +Route::get('/search', 'MessagesController@search')->name('api.search'); + +/** + * Get shared photos + */ +Route::post('/shared', 'MessagesController@sharedPhotos')->name('api.shared'); + +/** + * Delete Conversation + */ +Route::post('/deleteConversation', 'MessagesController@deleteConversation')->name('api.conversation.delete'); + +/** + * Delete Conversation + */ +Route::post('/updateSettings', 'MessagesController@updateSettings')->name('api.avatar.update'); + +/** + * Set active status + */ +Route::post('/setActiveStatus', 'MessagesController@setActiveStatus')->name('api.activeStatus.set'); + + diff --git a/routes/chatify/error_log b/routes/chatify/error_log new file mode 100644 index 0000000..9cb2aab --- /dev/null +++ b/routes/chatify/error_log @@ -0,0 +1,388 @@ +[23-Jun-2024 01:06:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[23-Jun-2024 01:06:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[25-Jun-2024 16:17:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[25-Jun-2024 16:18:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[26-Jun-2024 21:49:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[26-Jun-2024 21:49:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[29-Jun-2024 10:03:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[04-Jul-2024 18:39:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[05-Jul-2024 12:47:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[05-Jul-2024 12:47:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[06-Jul-2024 18:39:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[28-Jul-2024 00:53:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[03-Aug-2024 01:35:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[03-Aug-2024 01:35:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[03-Aug-2024 02:03:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[03-Aug-2024 02:03:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[29-Aug-2024 06:13:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[29-Aug-2024 14:31:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[04-Oct-2024 02:08:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[04-Oct-2024 02:26:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[07-Oct-2024 09:24:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[07-Oct-2024 09:24:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[07-Nov-2024 08:45:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[07-Nov-2024 09:15:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[22-Nov-2024 23:16:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[22-Nov-2024 23:16:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[06-Dec-2024 21:23:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[07-Dec-2024 04:26:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[09-Jan-2025 11:51:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[09-Jan-2025 15:20:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[21-Jan-2025 09:29:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[22-Jan-2025 14:45:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[25-Jan-2025 20:12:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[10-Feb-2025 21:02:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[10-Feb-2025 21:41:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[15-Mar-2025 04:42:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[15-Mar-2025 05:54:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[28-Mar-2025 12:26:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[03-Apr-2025 10:52:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[11-Apr-2025 21:14:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[14-Apr-2025 01:29:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[22-Apr-2025 09:08:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[22-Apr-2025 11:12:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[24-Apr-2025 23:30:56 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[28-Apr-2025 04:43:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[25-May-2025 16:13:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[29-May-2025 14:21:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[28-Jun-2025 14:09:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[28-Jun-2025 19:07:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[26-Aug-2025 22:46:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[26-Aug-2025 23:00:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[29-Aug-2025 03:39:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[30-Aug-2025 06:11:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[12-Sep-2025 10:00:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[12-Sep-2025 10:09:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[13-Sep-2025 00:40:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[17-Sep-2025 00:44:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[25-Sep-2025 12:58:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[25-Sep-2025 14:03:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[24-Oct-2025 02:34:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[24-Oct-2025 03:20:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[28-Oct-2025 16:17:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[30-Oct-2025 02:23:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[24-Nov-2025 00:21:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[24-Nov-2025 05:08:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[13-Jan-2026 09:13:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[14-Jan-2026 10:00:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[14-Jan-2026 16:12:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[16-Jan-2026 10:02:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[17-Jan-2026 09:42:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[18-Jan-2026 09:22:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[19-Jan-2026 09:50:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[20-Jan-2026 09:10:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[22-Jan-2026 10:15:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[23-Jan-2026 09:41:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[24-Jan-2026 10:44:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[25-Jan-2026 09:48:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[26-Jan-2026 10:48:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[27-Jan-2026 09:50:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[27-Jan-2026 13:22:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[27-Jan-2026 13:33:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[28-Jan-2026 16:21:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[31-Jan-2026 09:32:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[02-Feb-2026 09:10:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[04-Feb-2026 09:30:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[01-Mar-2026 10:26:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[01-Mar-2026 15:57:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[19-Mar-2026 18:16:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[19-Mar-2026 18:53:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[20-Mar-2026 05:50:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[21-Mar-2026 20:03:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[26-Mar-2026 21:32:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[26-Mar-2026 21:32:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[05-Apr-2026 19:02:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 +[05-Apr-2026 22:29:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[09-May-2026 12:06:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/api.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/api.php on line 8 +[09-May-2026 12:33:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/chatify/web.php:16 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/chatify/web.php on line 16 diff --git a/routes/chatify/web.php b/routes/chatify/web.php new file mode 100644 index 0000000..95d7b8a --- /dev/null +++ b/routes/chatify/web.php @@ -0,0 +1,118 @@ +name(config('chatify.routes.prefix')); + +/** + * Fetch info for specific id [user/group] + */ +Route::post('/idInfo', 'MessagesController@idFetchData'); + +/** + * Send message route + */ +Route::post('/sendMessage', 'MessagesController@send')->name('send.message'); + +/** + * Fetch messages + */ +Route::post('/fetchMessages', 'MessagesController@fetch')->name('fetch.messages'); + +/** + * Download attachments route to create a downloadable links + */ +Route::get('/download/{fileName}', 'MessagesController@download')->name(config('chatify.attachments.download_route_name')); + +/** + * Authentication for pusher private channels + */ +Route::post('/chat/auth', 'MessagesController@pusherAuth')->name('pusher.auth'); + +/** + * Make messages as seen + */ +Route::post('/makeSeen', 'MessagesController@seen')->name('messages.seen'); + +/** + * Get contacts + */ +Route::get('/getContacts', 'MessagesController@getContacts')->name('contacts.get'); + +/** + * Update contact item data + */ +Route::post('/updateContacts', 'MessagesController@updateContactItem')->name('contacts.update'); + + +/** + * Star in favorite list + */ +Route::post('/star', 'MessagesController@favorite')->name('star'); + +/** + * get favorites list + */ +Route::post('/favorites', 'MessagesController@getFavorites')->name('favorites'); + +/** + * Search in messenger + */ +Route::get('/search', 'MessagesController@search')->name('search'); + +/** + * Get shared photos + */ +Route::post('/shared', 'MessagesController@sharedPhotos')->name('shared'); + +/** + * Delete Conversation + */ +Route::post('/deleteConversation', 'MessagesController@deleteConversation')->name('conversation.delete'); + +/** + * Delete Message + */ +Route::post('/deleteMessage', 'MessagesController@deleteMessage')->name('message.delete'); + +/** + * Update setting + */ +Route::post('/updateSettings', 'MessagesController@updateSettings')->name('avatar.update'); + +/** + * Set active status + */ +Route::post('/setActiveStatus', 'MessagesController@setActiveStatus')->name('activeStatus.set'); + + + + + + +/* +* [Group] view by id +*/ +Route::get('/group/{id}', 'MessagesController@index')->name('group'); + +/* +* user view by id. +* Note : If you added routes after the [User] which is the below one, +* it will considered as user id. +* +* e.g. - The commented routes below : +*/ +// Route::get('/route', function(){ return 'Munaf'; }); // works as a route +Route::get('/{id}', 'MessagesController@index')->name('user'); +// Route::get('/route', function(){ return 'Munaf'; }); // works as a user id diff --git a/routes/console.php b/routes/console.php new file mode 100644 index 0000000..eff2ed2 --- /dev/null +++ b/routes/console.php @@ -0,0 +1,8 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote')->hourly(); diff --git a/routes/error_log b/routes/error_log new file mode 100644 index 0000000..22bb3cf --- /dev/null +++ b/routes/error_log @@ -0,0 +1,860 @@ +[22-Jun-2024 22:36:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[22-Jun-2024 22:36:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[23-Jun-2024 01:06:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[23-Jun-2024 01:06:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[25-Jun-2024 09:07:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[25-Jun-2024 09:07:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[25-Jun-2024 09:07:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[25-Jun-2024 11:11:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[26-Jun-2024 17:53:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[26-Jun-2024 17:53:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[26-Jun-2024 17:53:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[26-Jun-2024 17:54:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[28-Jun-2024 21:58:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[28-Jun-2024 21:59:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[29-Jun-2024 16:27:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[29-Jun-2024 21:49:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[01-Jul-2024 17:04:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[01-Jul-2024 20:34:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[02-Jul-2024 04:07:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[02-Jul-2024 07:58:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[02-Jul-2024 23:25:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[03-Jul-2024 20:45:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[17-Jul-2024 22:42:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[18-Jul-2024 03:08:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[18-Jul-2024 08:46:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[18-Jul-2024 12:42:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[24-Jul-2024 16:38:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[30-Jul-2024 07:03:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[31-Jul-2024 11:36:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[31-Jul-2024 11:36:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[03-Aug-2024 01:35:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[03-Aug-2024 01:35:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[03-Aug-2024 01:35:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[03-Aug-2024 01:35:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[03-Aug-2024 02:03:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[03-Aug-2024 02:03:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[03-Aug-2024 02:03:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[03-Aug-2024 02:03:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[04-Aug-2024 09:03:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[04-Aug-2024 12:50:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[17-Aug-2024 15:54:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[17-Aug-2024 15:54:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[17-Aug-2024 15:54:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[17-Aug-2024 15:54:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[25-Aug-2024 19:42:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[25-Aug-2024 19:42:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[25-Aug-2024 19:42:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[25-Aug-2024 19:43:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[25-Aug-2024 20:44:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[25-Aug-2024 20:44:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[25-Aug-2024 20:45:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[25-Aug-2024 20:45:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[26-Aug-2024 19:06:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[26-Aug-2024 19:27:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[26-Aug-2024 19:36:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[26-Aug-2024 20:22:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[28-Sep-2024 07:18:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[28-Sep-2024 17:59:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[28-Sep-2024 19:17:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[28-Sep-2024 20:36:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[03-Oct-2024 05:26:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[03-Oct-2024 19:18:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[05-Oct-2024 12:26:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[08-Oct-2024 10:34:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[31-Oct-2024 09:13:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[31-Oct-2024 15:01:04 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[31-Oct-2024 19:52:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[31-Oct-2024 20:38:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[08-Nov-2024 12:50:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[22-Nov-2024 23:16:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[22-Nov-2024 23:16:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[22-Nov-2024 23:16:08 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[22-Nov-2024 23:16:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[01-Dec-2024 22:27:29 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[02-Dec-2024 03:55:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[02-Dec-2024 07:29:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[02-Dec-2024 09:01:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[02-Jan-2025 00:48:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[02-Jan-2025 03:24:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[02-Jan-2025 12:18:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[02-Jan-2025 12:50:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[06-Jan-2025 09:37:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[07-Jan-2025 20:59:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[10-Jan-2025 10:29:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[12-Jan-2025 13:28:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[18-Jan-2025 19:31:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[19-Jan-2025 07:02:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[19-Jan-2025 12:02:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[19-Jan-2025 12:31:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[30-Jan-2025 21:37:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[30-Jan-2025 22:08:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[30-Jan-2025 23:53:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[31-Jan-2025 08:55:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[03-Mar-2025 21:19:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[04-Mar-2025 04:51:02 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[07-Mar-2025 13:13:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[28-Mar-2025 11:52:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[28-Mar-2025 13:07:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[28-Mar-2025 13:41:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[29-Mar-2025 01:17:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[03-Apr-2025 10:19:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[03-Apr-2025 12:46:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[10-Apr-2025 05:43:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[12-Apr-2025 03:28:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[12-Apr-2025 18:49:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[13-Apr-2025 07:42:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[14-Apr-2025 22:44:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[16-Apr-2025 18:49:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[17-Apr-2025 03:17:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[17-Apr-2025 03:28:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[01-May-2025 02:28:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[17-May-2025 18:33:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[20-May-2025 02:59:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[20-May-2025 13:34:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[24-May-2025 00:09:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[31-May-2025 09:03:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[17-Jun-2025 09:56:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[17-Jun-2025 11:20:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[26-Jun-2025 20:25:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[28-Jun-2025 11:09:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[15-Jul-2025 10:33:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[15-Jul-2025 11:32:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[26-Jul-2025 21:30:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[30-Jul-2025 09:48:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[13-Aug-2025 09:50:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[16-Aug-2025 14:40:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[26-Aug-2025 21:08:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[26-Aug-2025 22:28:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[29-Aug-2025 01:42:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[29-Aug-2025 03:53:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[31-Aug-2025 03:34:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[31-Aug-2025 04:16:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[31-Aug-2025 06:05:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[31-Aug-2025 11:39:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[31-Aug-2025 11:44:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[01-Sep-2025 00:39:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[13-Sep-2025 17:43:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[13-Sep-2025 19:05:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[14-Sep-2025 08:41:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[14-Sep-2025 08:45:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[17-Sep-2025 00:44:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[17-Sep-2025 00:44:45 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[25-Sep-2025 10:27:59 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[25-Sep-2025 11:50:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[18-Oct-2025 22:18:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[21-Oct-2025 16:55:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[24-Oct-2025 06:29:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[24-Oct-2025 08:59:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[25-Oct-2025 04:32:36 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[25-Oct-2025 14:30:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[27-Oct-2025 00:14:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[28-Oct-2025 00:22:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[17-Nov-2025 23:47:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[18-Nov-2025 01:46:35 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[23-Nov-2025 23:07:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[24-Nov-2025 01:30:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[08-Jan-2026 02:05:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[08-Jan-2026 10:21:21 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[08-Jan-2026 21:55:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[09-Jan-2026 10:34:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[10-Jan-2026 15:28:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[11-Jan-2026 08:42:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[11-Jan-2026 09:31:50 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[12-Jan-2026 10:40:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[13-Jan-2026 04:02:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[13-Jan-2026 04:03:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[13-Jan-2026 20:22:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[14-Jan-2026 21:01:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[15-Jan-2026 20:32:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[17-Jan-2026 03:32:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[17-Jan-2026 20:21:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[19-Jan-2026 03:10:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[19-Jan-2026 20:28:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[21-Jan-2026 04:02:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[22-Jan-2026 00:25:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[22-Jan-2026 06:29:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[23-Jan-2026 04:00:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[25-Jan-2026 10:09:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[25-Jan-2026 10:27:51 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[11-Feb-2026 00:17:40 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[18-Feb-2026 17:18:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[21-Feb-2026 20:40:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[23-Feb-2026 15:36:18 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[23-Feb-2026 18:08:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[23-Feb-2026 22:05:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[07-Mar-2026 22:44:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[08-Mar-2026 02:46:27 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[17-Mar-2026 00:35:41 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[19-Mar-2026 22:48:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[20-Mar-2026 14:25:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[22-Mar-2026 00:26:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[22-Mar-2026 14:24:13 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[22-Mar-2026 15:58:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[22-Mar-2026 17:49:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[22-Mar-2026 22:53:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[24-Mar-2026 10:55:09 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[26-Mar-2026 15:32:31 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[27-Mar-2026 18:38:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[19-Apr-2026 03:28:37 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[19-Apr-2026 03:56:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[19-Apr-2026 05:39:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[19-Apr-2026 07:38:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[21-Apr-2026 20:29:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[30-Apr-2026 09:51:55 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[30-Apr-2026 10:20:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[30-Apr-2026 11:21:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[30-Apr-2026 22:50:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[03-May-2026 01:00:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[03-May-2026 11:23:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[03-May-2026 14:23:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 +[03-May-2026 16:53:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/auth.php:14 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/auth.php on line 14 +[04-May-2026 05:22:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[04-May-2026 08:55:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Route" not found in /home/humicpro/public_html/aigo/routes/web.php:21 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/web.php on line 21 +[05-May-2026 06:23:58 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Artisan" not found in /home/humicpro/public_html/aigo/routes/console.php:6 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/console.php on line 6 +[12-May-2026 11:51:34 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Support\Facades\Broadcast" not found in /home/humicpro/public_html/aigo/routes/channels.php:5 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/routes/channels.php on line 5 diff --git a/routes/web.php b/routes/web.php new file mode 100644 index 0000000..9e1cb02 --- /dev/null +++ b/routes/web.php @@ -0,0 +1,116 @@ +name('strava.authorize'); +Route::get('/strava/callback', [StravaController::class, 'handleCallback'])->name('strava.callback'); + + + +// 1. CLIENT PAGES +Route::group(['prefix' => 'client', 'middleware' => ['auth', 'verified']], function () { + // DASHBOARD CONTROLLER + Route::get('/dashboard', [DashboardController::class, 'dashboardClient'])->name('dashboard')->middleware('role'); + Route::get('/activity-report', [DashboardController::class, 'activityReport'])->name('activity-report'); + Route::get('/schedule', [DashboardController::class, 'schedule'])->name('customer.schedule'); + Route::get('/notifications', [DashboardController::class, 'notifications'])->name('client.notifications'); + Route::get('/results', [DashboardController::class, 'consultationResults'])->name('patient.consultation-results'); + + // CONSULTATION CONTROLLER + Route::get('/health-data', [ConsultationController::class, 'showHealthDataForm'])->name('health-data.show'); + Route::post('/health-data', [ConsultationController::class, 'storeHealthDataForm'])->name('health-data.store'); + Route::get('/jadwal', [ConsultationController::class, 'showJadwalForm'])->name('jadwal.show'); + Route::post('/consultation', [ConsultationController::class, 'storeConsultation'])->name('consultation.store'); + Route::get('/profile', function () {return view('customer-profile');})->name('customer.profile'); + Route::get('/transaction', function () {return view('customer-transaction');})->name('customer.transaction'); + Route::get('/priv-policy', function () {return view('privacy-policy-client');})->name('customer.priv-policy'); + Route::get('/terms-con', function () {return view('terms-con-client');})->name('customer.terms-con'); +}); + + +// 2. ADMIN PAGES +Route::group(['middleware' => ['auth', 'verified']], function () { + Route::get('/admin/dashboard', [AdminController::class, 'dashboard'])->name('admin.dashboard')->middleware('role'); + Route::get('/admin/doctor-info', [AdminController::class, 'showDoctor'])->name('showDoctor'); + Route::get('/admin/patient-info', [AdminController::class, 'showPatient'])->name('showPatient'); + Route::get('/delete/user/{id}', [AdminController::class, 'delete'])->name('delete-user'); + Route::get('/user/{id}', [AdminController::class, 'showUserDetail'])->name('show-user'); + Route::post('/update/user/{id}', [AdminController::class, 'updateData'])->name('update-user'); + Route::get('/admin/profile', function () {return view('admin-profile');})->name('admin.profile'); + Route::get('/admin/priv-policy', function () {return view('privacy-policy-admin');})->name('admin.priv-policy'); + Route::get('/admin/terms-con', function () {return view('terms-con-admin');})->name('admin.terms-con'); + +}); + +// 3. DOCTOR PAGES +Route::group(['prefix' => 'doctor', 'middleware' => ['auth', 'verified']], function () { + Route::get('/dashboard', [DoctorController::class, 'dashboard'])->name('doctor.dashboard')->middleware('role'); + Route::post('/decline-consultation/{consultationId}', [DoctorController::class, 'declineConsultation'])->name('doctor.decline-consultation'); + Route::get('/patient-acceptance', [DoctorController::class, 'patientAcceptance'])->name('doctor.patient-acceptance'); + Route::get('/notifications', [DoctorController::class, 'notifications'])->name('doctor.notifications'); + + Route::get('/schedule', function () {return view('doctor-schedule');})->name('doctor.schedule'); + Route::get('/transaction', function () {return view('doctor-transaction');})->name('doctor.transaction'); + + Route::get('/profile', function () {return view('doctor-profile');})->name('doctor.profile'); + Route::get('/doctor/priv-policy', function () {return view('privacy-policy-doctor');})->name('doctor.priv-policy'); + Route::get('/doctor/terms-con', function () {return view('terms-con-doctor');})->name('doctor.terms-con'); + + Route::post('/approve-consultation/{consultationId}', [DoctorController::class, 'approveConsultation'])->name('doctor.approve-consultation'); + Route::get('/schedule', [DoctorController::class, 'schedule'])->name('doctor.schedule'); + + Route::get('/consultation-result/{patientId}', [DoctorController::class, 'showConsultationResultForm'])->name('doctor.show-consultation-result-form'); + Route::post('/consultation-result', [DoctorController::class, 'storeConsultationResult'])->name('doctor.store-consultation-result'); +}); + + +Route::middleware('auth')->group(function () { + Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit'); + Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update'); + Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy'); +}); + +Route::middleware('auth')->get('/api/current-user-id', function () { + return response()->json(['user_id' => Auth::id()]); +}); + + +require __DIR__.'/auth.php'; diff --git a/storage/app/.gitignore b/storage/app/.gitignore new file mode 100644 index 0000000..8f4803c --- /dev/null +++ b/storage/app/.gitignore @@ -0,0 +1,3 @@ +* +!public/ +!.gitignore diff --git a/storage/app/public/.gitignore b/storage/app/public/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/app/public/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore new file mode 100644 index 0000000..05c4471 --- /dev/null +++ b/storage/framework/.gitignore @@ -0,0 +1,9 @@ +compiled.php +config.php +down +events.scanned.php +maintenance.php +routes.php +routes.scanned.php +schedule-* +services.json diff --git a/storage/framework/cache/.gitignore b/storage/framework/cache/.gitignore new file mode 100644 index 0000000..01e4a6c --- /dev/null +++ b/storage/framework/cache/.gitignore @@ -0,0 +1,3 @@ +* +!data/ +!.gitignore diff --git a/storage/framework/cache/data/.gitignore b/storage/framework/cache/data/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/cache/data/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/sessions/.gitignore b/storage/framework/sessions/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/sessions/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/testing/.gitignore b/storage/framework/testing/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/testing/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/views/.gitignore b/storage/framework/views/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/views/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/logs/.gitignore b/storage/logs/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/logs/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..cab0e0e --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,27 @@ +import defaultTheme from "tailwindcss/defaultTheme"; +import forms from "@tailwindcss/forms"; + +/** @type {import('tailwindcss').Config} */ + +module.exports = { + darkMode: "selector", + // ... +}; + +export default { + content: [ + "./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php", + "./storage/framework/views/*.php", + "./resources/views/**/*.blade.php", + ], + + theme: { + extend: { + fontFamily: { + sans: ["Figtree", ...defaultTheme.fontFamily.sans], + }, + }, + }, + + plugins: [forms], +}; diff --git a/tests/Feature/Auth/AuthenticationTest.php b/tests/Feature/Auth/AuthenticationTest.php new file mode 100644 index 0000000..acc2f86 --- /dev/null +++ b/tests/Feature/Auth/AuthenticationTest.php @@ -0,0 +1,111 @@ +get('/login'); + $response->assertStatus(200); + } + + public function test_users_can_authenticate_with_valid_credentials(): void + { + $user = User::factory()->create([ + 'password' => bcrypt($password = 'password'), + ]); + + $response = $this->post('/login', [ + 'email' => $user->email, + 'password' => $password, + ]); + + $this->assertAuthenticatedAs($user); + + // Assert redirect based on user role + if ($user->user_role === 'admin') { + $response->assertRedirect(route('admin-dashboard', [], false)); + } elseif ($user->user_role === 'doctor') { + //$response->assertRedirect(route('doctor-dashboard', [], false)); + } else { + $response->assertRedirect(route('user-dashboard', [], false)); + } + } + + + public function test_users_can_not_authenticate_with_invalid_password(): void + { + $user = User::factory()->create(); + + $response = $this->post('/login', [ + 'email' => $user->email, + 'password' => 'wrong-password', + ]); + + $response->assertSessionHasErrors(); + $this->assertGuest(); + } + + public function test_users_can_logout(): void + { + $user = User::factory()->create(); + + $response = $this->actingAs($user)->post('/logout'); + + $response->assertRedirect('/'); + $this->assertGuest(); + } + + public function test_user_can_redirect_to_user_dashboard(): void + { + $user = User::factory()->create(['user_role' => 'user']); + $userResponse = $this->post('/login', [ + 'email' => $user->email, + 'password' => 'password', + ]); + $userResponse->assertRedirect(route('user-dashboard')); + } + + public function test_admin_can_redirect_to_admin_dashboard(): void + { + $admin = User::factory()->create(['user_role' => 'admin']); + $adminResponse = $this->post('/login', [ + 'email' => $admin->email, + 'password' => 'password', // Assuming password is 'password' for all users + ]); + + $adminResponse->assertRedirect(route('admin-dashboard')); + } + + // public function test_doctor_can_redirect_to_doctor_dashboard(): void + // { + // $doctor = User::factory()->create(['user_role' => 'doctor']); + // $doctorResponse = $this->post('/login', [ + // 'email' => $doctor->email, + // 'password' => 'password', + // ]); + + // $doctorResponse->assertRedirect(route('doctor-dashboard')); + // } + + public function test_logout_destroys_authenticated_session(): void + { + $user = User::factory()->create(); + + $this->actingAs($user)->post('/logout'); + + $this->assertGuest(); + $this->assertFalse(Auth::check()); + $this->assertNull(Auth::user()); + $this->assertTrue(Session::has('_token')); + } +} diff --git a/tests/Feature/Auth/RegistrationTest.php b/tests/Feature/Auth/RegistrationTest.php new file mode 100644 index 0000000..c466344 --- /dev/null +++ b/tests/Feature/Auth/RegistrationTest.php @@ -0,0 +1,123 @@ +get('/register'); + + $response->assertStatus(200); + } + + public function test_new_user_can_register() + { + $userData = [ + 'username' => $this->faker->userName, + 'password' => 'password123', + 'password_confirmation' => 'password123', + 'name' => $this->faker->name, + 'email' => $this->faker->unique()->safeEmail, + 'telepon' => $this->faker->phoneNumber, + 'alamat' => $this->faker->address, + 'gender' => $this->faker->randomElement(['male', 'female']), + ]; + + $response = $this->post('/register', $userData); + + $response->assertStatus(302); // Check if redirected after successful registration + $response->assertRedirect(route('login')); + + $this->assertDatabaseHas('users', [ + 'username' => $userData['username'], + 'email' => strtolower($userData['email']), + 'telepon' => $userData['telepon'], + 'alamat' => $userData['alamat'], + 'gender' => $userData['gender'], + ]); + + // Assert that the password is hashed + $user = User::where('email', $userData['email'])->first(); + $this->assertTrue(Hash::check($userData['password'], $user->password)); + } + + public function test_registration_validation_fails_if_missing_required_fields() + { + $response = $this->post('/register', []); + + $response->assertSessionHasErrors(['username', 'password', 'name', 'email', 'telepon', 'gender']); + } + + public function test_registration_validation_fails_if_email_invalid() + { + $userData = [ + 'username' => $this->faker->userName, + 'password' => 'password123', + 'password_confirmation' => 'password123', + 'name' => $this->faker->name, + 'email' => 'invalid_email', + 'telepon' => $this->faker->phoneNumber, + 'alamat' => $this->faker->address, + 'gender' => $this->faker->randomElement(['male', 'female']), + ]; + + $response = $this->post('/register', $userData); + + $response->assertSessionHasErrors(['email']); + } + + public function test_registration_fails_if_duplicate_username() + { + $existingUser = User::factory()->create(); + + $userData = [ + 'username' => $existingUser->username, + 'password' => 'password123', + 'password_confirmation' => 'password123', + 'name' => $this->faker->name, + 'email' => $this->faker->unique()->safeEmail, + 'telepon' => $this->faker->phoneNumber, + 'alamat' => $this->faker->address, + 'gender' => $this->faker->randomElement(['male', 'female']), + ]; + + $response = $this->post('/register', $userData); + + $response->assertSessionHasErrors(['username']); + } + + public function test_registration_fails_if_duplicate_email() + { + $existingUser = User::factory()->create(); + + $userData = [ + 'username' => $this->faker->userName, + 'password' => 'password123', + 'password_confirmation' => 'password123', + 'name' => $this->faker->name, + 'email' => $existingUser->email, + 'telepon' => $this->faker->phoneNumber, + 'alamat' => $this->faker->address, + 'gender' => $this->faker->randomElement(['male', 'female']), + ]; + + $response = $this->post('/register', $userData); + + $response->assertSessionHasErrors(['email']); + } + + + +} diff --git a/tests/Feature/Auth/error_log b/tests/Feature/Auth/error_log new file mode 100644 index 0000000..4c0d79b --- /dev/null +++ b/tests/Feature/Auth/error_log @@ -0,0 +1,316 @@ +[24-Jun-2024 20:56:34 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[24-Jun-2024 20:56:37 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[27-Jun-2024 14:01:52 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[27-Jun-2024 14:03:00 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[10-Jul-2024 10:20:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[14-Jul-2024 19:35:39 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[15-Jul-2024 07:49:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[17-Jul-2024 14:31:00 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[03-Aug-2024 01:36:16 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[03-Aug-2024 01:36:16 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[03-Aug-2024 02:04:59 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[03-Aug-2024 02:05:00 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[26-Aug-2024 16:18:38 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[26-Aug-2024 21:28:09 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[04-Oct-2024 05:59:22 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[04-Oct-2024 11:01:08 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[07-Nov-2024 05:09:36 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[07-Nov-2024 08:15:57 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[22-Nov-2024 23:17:13 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[22-Nov-2024 23:17:14 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[06-Dec-2024 22:34:36 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[06-Dec-2024 23:55:14 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[01-Jan-2025 22:49:07 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[09-Jan-2025 03:47:08 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[09-Jan-2025 17:40:26 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[04-Feb-2025 07:38:58 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[04-Feb-2025 07:39:58 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[05-Feb-2025 04:30:49 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[06-Feb-2025 19:27:44 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[10-Feb-2025 19:15:54 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[12-Feb-2025 11:07:57 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[03-Apr-2025 07:49:26 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[09-Apr-2025 21:53:26 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[11-Apr-2025 14:32:42 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[18-Apr-2025 10:02:56 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[18-Apr-2025 19:04:08 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[30-Apr-2025 19:59:45 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[09-May-2025 01:04:51 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[31-May-2025 19:42:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[06-Jun-2025 09:05:12 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[04-Jul-2025 06:02:49 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[04-Jul-2025 07:22:18 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[07-Aug-2025 09:07:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[10-Sep-2025 18:25:32 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[10-Sep-2025 23:33:27 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[04-Oct-2025 22:36:01 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[04-Oct-2025 22:36:22 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[12-Oct-2025 12:41:37 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[12-Oct-2025 21:39:44 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[28-Oct-2025 15:22:04 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[29-Oct-2025 21:19:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[01-Nov-2025 21:10:10 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[11-Nov-2025 12:10:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[15-Nov-2025 01:27:38 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[26-Dec-2025 09:57:59 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[17-Jan-2026 16:46:29 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[22-Jan-2026 06:40:39 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[25-Jan-2026 07:19:05 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[27-Jan-2026 07:03:07 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[29-Jan-2026 06:42:37 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[31-Jan-2026 06:42:38 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[01-Feb-2026 19:53:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[01-Feb-2026 19:55:14 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[02-Feb-2026 06:53:22 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[04-Feb-2026 07:07:47 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[06-Feb-2026 08:03:15 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[07-Feb-2026 21:01:40 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[09-Feb-2026 11:19:15 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[11-Feb-2026 02:23:04 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[11-Feb-2026 13:45:29 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[13-Feb-2026 13:32:37 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[15-Feb-2026 15:15:02 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[19-Mar-2026 05:18:09 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[20-Mar-2026 00:13:22 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[25-Mar-2026 10:10:38 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[25-Mar-2026 21:58:47 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 +[28-Mar-2026 09:17:24 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[13-Apr-2026 12:50:59 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php:13 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/RegistrationTest.php on line 13 +[13-Apr-2026 19:42:14 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php:11 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/Auth/AuthenticationTest.php on line 11 diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php new file mode 100644 index 0000000..8364a84 --- /dev/null +++ b/tests/Feature/ExampleTest.php @@ -0,0 +1,19 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/tests/Feature/error_log b/tests/Feature/error_log new file mode 100644 index 0000000..c7de1b6 --- /dev/null +++ b/tests/Feature/error_log @@ -0,0 +1,264 @@ +[24-Jun-2024 14:23:48 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[27-Jun-2024 04:35:15 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[29-Jun-2024 17:44:10 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[05-Jul-2024 13:10:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[08-Jul-2024 13:39:16 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[03-Aug-2024 01:36:15 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[03-Aug-2024 02:04:58 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[24-Aug-2024 03:54:41 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[28-Sep-2024 14:19:09 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[18-Oct-2024 17:20:26 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[31-Oct-2024 08:55:25 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[22-Nov-2024 23:17:12 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[01-Dec-2024 22:58:03 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[02-Jan-2025 09:25:28 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[19-Jan-2025 01:06:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[31-Jan-2025 07:49:32 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[04-Feb-2025 07:28:28 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[07-Mar-2025 09:40:53 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[28-Mar-2025 12:13:04 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[03-Apr-2025 11:39:34 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[09-Apr-2025 02:33:45 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[24-Apr-2025 16:06:03 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[09-May-2025 01:10:13 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[17-May-2025 23:41:20 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[19-May-2025 22:11:31 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[21-May-2025 22:18:31 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[24-May-2025 22:59:45 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[06-Jun-2025 09:22:11 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[04-Jul-2025 10:44:17 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[01-Aug-2025 20:42:14 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[28-Aug-2025 22:30:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[02-Sep-2025 00:06:11 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[21-Sep-2025 09:22:00 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[01-Oct-2025 01:59:59 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[26-Oct-2025 03:11:20 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[30-Oct-2025 09:06:39 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[14-Nov-2025 16:24:51 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[08-Jan-2026 15:40:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[10-Jan-2026 05:13:05 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[12-Jan-2026 09:50:47 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[12-Jan-2026 13:41:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[15-Jan-2026 07:30:56 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[16-Jan-2026 19:22:21 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[18-Jan-2026 19:56:06 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[20-Jan-2026 19:22:43 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[22-Jan-2026 20:06:42 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[24-Jan-2026 20:05:33 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[26-Jan-2026 20:35:43 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[30-Jan-2026 19:31:42 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[31-Jan-2026 19:33:11 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[01-Feb-2026 19:30:27 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[03-Feb-2026 23:21:01 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[05-Feb-2026 17:31:03 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[05-Feb-2026 20:39:55 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[09-Feb-2026 14:12:52 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[11-Feb-2026 02:32:48 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[13-Feb-2026 02:29:17 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[15-Feb-2026 02:51:06 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[17-Feb-2026 05:18:18 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[18-Feb-2026 23:53:59 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[06-Mar-2026 14:54:12 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[26-Mar-2026 12:46:34 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[26-Mar-2026 13:24:54 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[26-Mar-2026 13:53:23 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[02-Apr-2026 19:49:32 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 +[30-Apr-2026 06:10:13 UTC] PHP Fatal error: Uncaught Error: Class "Tests\TestCase" not found in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php:8 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Feature/ExampleTest.php on line 8 diff --git a/tests/TestCase.php b/tests/TestCase.php new file mode 100644 index 0000000..fe1ffc2 --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +} diff --git a/tests/Unit/error_log b/tests/Unit/error_log new file mode 100644 index 0000000..a698f4c --- /dev/null +++ b/tests/Unit/error_log @@ -0,0 +1,260 @@ +[24-Jun-2024 12:57:57 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[24-Jun-2024 18:39:38 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[27-Jun-2024 02:39:48 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[29-Jun-2024 17:46:20 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[29-Jun-2024 22:05:44 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[07-Jul-2024 21:40:55 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[21-Jul-2024 01:31:17 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[03-Aug-2024 01:36:17 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[03-Aug-2024 02:05:01 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[04-Aug-2024 11:37:16 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[27-Aug-2024 00:02:42 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[28-Sep-2024 16:22:20 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[10-Oct-2024 02:40:48 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[31-Oct-2024 20:18:20 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[22-Nov-2024 23:17:15 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[02-Dec-2024 03:08:42 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[02-Jan-2025 03:19:34 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[28-Jan-2025 02:11:58 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[30-Jan-2025 19:42:47 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[04-Feb-2025 07:20:10 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[06-Feb-2025 17:29:44 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[06-Feb-2025 17:36:03 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[04-Mar-2025 06:06:26 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[28-Mar-2025 09:06:24 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[03-Apr-2025 09:08:03 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[09-Apr-2025 08:02:23 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[16-Apr-2025 00:20:04 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[16-Apr-2025 23:30:46 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[03-May-2025 14:32:56 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[09-May-2025 04:11:42 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[11-Jun-2025 11:40:11 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[10-Jul-2025 03:05:34 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[07-Aug-2025 12:39:27 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[10-Sep-2025 21:12:49 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[24-Sep-2025 13:58:40 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[03-Oct-2025 14:04:46 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[12-Oct-2025 12:55:41 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[25-Oct-2025 21:22:34 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[31-Oct-2025 02:37:21 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[01-Nov-2025 13:52:26 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[11-Nov-2025 19:20:23 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[10-Jan-2026 04:11:14 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[12-Jan-2026 05:02:28 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[12-Jan-2026 13:01:58 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[15-Jan-2026 12:50:55 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[17-Jan-2026 13:13:18 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[19-Jan-2026 12:31:05 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[20-Jan-2026 13:04:26 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[21-Jan-2026 13:27:26 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[22-Jan-2026 13:43:26 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[23-Jan-2026 14:19:07 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[24-Jan-2026 13:28:19 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[25-Jan-2026 13:47:47 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[26-Jan-2026 14:42:22 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[27-Jan-2026 13:02:28 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[28-Jan-2026 14:52:39 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[30-Jan-2026 12:44:57 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[31-Jan-2026 12:53:45 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[01-Feb-2026 20:20:43 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[02-Feb-2026 04:46:28 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[02-Feb-2026 12:53:06 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[04-Feb-2026 03:14:02 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[09-Mar-2026 14:31:48 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[25-Mar-2026 21:29:09 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 +[17-Apr-2026 01:32:25 UTC] PHP Fatal error: Uncaught Error: Class "PHPUnit\Framework\TestCase" not found in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/Unit/ExampleTest.php on line 7 diff --git a/tests/error_log b/tests/error_log new file mode 100644 index 0000000..8b2fd77 --- /dev/null +++ b/tests/error_log @@ -0,0 +1,228 @@ +[24-Jun-2024 10:43:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[24-Jun-2024 14:24:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[26-Jun-2024 23:58:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[29-Jun-2024 17:23:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[02-Jul-2024 02:41:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[05-Jul-2024 20:05:38 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[18-Jul-2024 09:44:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[03-Aug-2024 01:36:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[03-Aug-2024 02:04:57 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[04-Aug-2024 09:26:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[17-Aug-2024 15:55:39 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[21-Aug-2024 09:52:17 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[25-Aug-2024 19:47:28 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[25-Aug-2024 20:44:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[23-Sep-2024 03:02:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[03-Oct-2024 12:49:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[25-Oct-2024 21:51:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[22-Nov-2024 23:17:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[27-Nov-2024 09:54:20 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[25-Dec-2024 02:42:54 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[27-Dec-2024 18:05:25 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[09-Jan-2025 12:48:01 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[21-Jan-2025 05:52:30 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[26-Jan-2025 02:19:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[26-Feb-2025 12:32:05 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[31-Mar-2025 12:12:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[15-Apr-2025 05:12:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[03-May-2025 12:54:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[26-May-2025 15:40:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[05-Jun-2025 23:56:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[04-Jul-2025 08:20:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[01-Aug-2025 16:54:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[27-Aug-2025 12:49:22 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[27-Aug-2025 13:57:11 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[01-Sep-2025 22:39:44 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[14-Sep-2025 08:31:00 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[30-Sep-2025 20:24:48 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[16-Oct-2025 16:35:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[25-Oct-2025 21:34:32 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[30-Oct-2025 08:39:43 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[31-Oct-2025 15:42:24 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[30-Nov-2025 09:02:52 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[11-Jan-2026 15:18:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[12-Jan-2026 13:22:12 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[13-Jan-2026 14:12:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[14-Jan-2026 14:59:10 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[15-Jan-2026 14:05:23 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[16-Jan-2026 14:00:07 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[17-Jan-2026 13:43:33 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[27-Jan-2026 18:37:47 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[05-Mar-2026 00:10:15 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[20-Mar-2026 09:14:26 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[23-Mar-2026 21:25:42 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[05-Apr-2026 20:29:46 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[28-Apr-2026 03:04:16 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[02-May-2026 03:24:19 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 +[06-May-2026 05:58:06 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Testing\TestCase" not found in /home/humicpro/public_html/aigo/tests/TestCase.php:7 +Stack trace: +#0 {main} + thrown in /home/humicpro/public_html/aigo/tests/TestCase.php on line 7 diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..89f26f5 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,14 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; + +export default defineConfig({ + plugins: [ + laravel({ + input: [ + 'resources/css/app.css', + 'resources/js/app.js', + ], + refresh: true, + }), + ], +});