use ArrayAccess;
use Exception;
use Illuminate\Contracts\Queue\QueueableCollection;
use Illuminate\Contracts\Queue\QueueableEntity;
use Illuminate\Contracts\Routing\UrlRoutable;
use Illuminate\Contracts\Support\Arrayable;
use Illuminate\Contracts\Support\Jsonable;
use Illuminate\Database\ConnectionResolverInterface as Resolver;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\Concerns\AsPivot;
use Illuminate\Database\Eloquent\Relations\HasManyThrough;
use Illuminate\Database\Eloquent\Relations\Pivot;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection as BaseCollection;
use Illuminate\Support\Str;
use Illuminate\Support\Traits\ForwardsCalls;
use JsonSerializable;
abstract class Model implements Arrayable, ArrayAccess, Jsonable, JsonSerializable, QueueableEntity, UrlRoutable
{
use Concerns\HasAttributes,
Concerns\HasEvents,
Concerns\HasGlobalScopes,
Concerns\HasRelationships,
Concerns\HasTimestamps,
Concerns\HidesAttributes,
Concerns\GuardsAttributes,
ForwardsCalls;
/**
* The connection name for the model.
*
* @var string|null
*/
protected $connection;
/**
* The table associated with the model.
*
""" During inheritance of ArrayAccess: Uncaught ErrorException: Return type of Illuminate\Database\Eloquent\Model::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/profitsh/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:1658\n Stack trace:\n #0 /home/profitsh/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(23): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError()\n #1 /home/profitsh/public_html/core/vendor/composer/ClassLoader.php(571): include('/home/profitsh/...')\n #2 /home/profitsh/public_html/core/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile()\n #3 /home/profitsh/public_html/core/vendor/laravel/framework/src/Illuminate/Database/DatabaseServiceProvider.php(42): Composer\Autoload\ClassLoader->loadClass()\n #4 /home/profitsh/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(623): Illuminate\Database\DatabaseServiceProvider->register()\n #5 /home/profitsh/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php(75): Illuminate\Foundation\Application->register()\n #6 /home/profitsh/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(603): Illuminate\Foundation\ProviderRepository->load()\n #7 /home/profitsh/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php(17): Illuminate\Foundation\Application->registerConfiguredProviders()\n #8 /home/profitsh/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(229): Illuminate\Foundation\Bootstrap\RegisterProviders->bootstrap()\n #9 /home/profitsh/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith()\n #10 /home/profitsh/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n #11 /home/profitsh/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()\n #12 /home/profitsh/public_html/index.php(55): Illuminate\Foundation\Http\Kernel->handle()\n #13 {main} """
| Key | Value |
| PATH | "/usr/local/bin:/bin:/usr/bin"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate"
|
| HTTP_HOST | "erp.profitshare.online"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| DOCUMENT_ROOT | "/home/profitsh/public_html"
|
| REMOTE_ADDR | "216.73.216.56"
|
| REMOTE_PORT | "29654"
|
| SERVER_ADDR | "49.12.82.48"
|
| SERVER_NAME | "erp.profitshare.online"
|
| SERVER_ADMIN | "webmaster@profitshare.online"
|
| SERVER_PORT | "443"
|
| REQUEST_SCHEME | "https"
|
| REQUEST_URI | "/"
|
| HTTPS | "on"
|
| X_SPDY | "HTTP2"
|
| SSL_PROTOCOL | "TLSv1.3"
|
| SSL_CIPHER | "TLS_AES_256_GCM_SHA384"
|
| SSL_CIPHER_USEKEYSIZE | "256"
|
| SSL_CIPHER_ALGKEYSIZE | "256"
|
| SCRIPT_FILENAME | "/home/profitsh/public_html/index.php"
|
| QUERY_STRING | "" |
| SCRIPT_URI | "https://erp.profitshare.online/"
|
| SCRIPT_URL | "/"
|
| SCRIPT_NAME | "/index.php"
|
| SERVER_PROTOCOL | "HTTP/1.1"
|
| SERVER_SOFTWARE | "LiteSpeed"
|
| REQUEST_METHOD | "GET"
|
| X-LSCACHE | "on"
|
| PHP_SELF | "/index.php"
|
| REQUEST_TIME_FLOAT | 1768592579.1798
|
| REQUEST_TIME | 1768592579
|
| APP_NAME | "Smart Lab Dev"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:hTKSAPn+0SawU4o3lCskhympopQJLHkAlmCYlvZuG7c="
|
| APP_DEBUG | "true"
|
| APP_URL | "https://profitshare.online"
|
| LOG_CHANNEL | "stack"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "localhost"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "profitsh_profit"
|
| DB_USERNAME | "profitsh_profit"
|
| DB_PASSWORD | "profitsh_profit"
|
| BROADCAST_DRIVER | "log"
|
| CACHE_DRIVER | "file"
|
| QUEUE_CONNECTION | "sync"
|
| SESSION_DRIVER | "file"
|
| SESSION_LIFETIME | "120"
|
| REDIS_HOST | "127.0.0.1"
|
| REDIS_PASSWORD | "null"
|
| REDIS_PORT | "6379"
|
| MAIL_DRIVER | "smtp"
|
| MAIL_HOST | "smtp.mailtrap.io"
|
| MAIL_PORT | "2525"
|
| MAIL_USERNAME | "null"
|
| MAIL_PASSWORD | "null"
|
| MAIL_ENCRYPTION | "null"
|
| PUSHER_APP_ID | "" |
| PUSHER_APP_KEY | "" |
| PUSHER_APP_SECRET | "" |
| MOLLIE_KEY | "test_5HcWVs9qc5pzy36H9Tu9mwAyats33J"
|
| Key | Value |
| APP_NAME | "Smart Lab Dev"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:hTKSAPn+0SawU4o3lCskhympopQJLHkAlmCYlvZuG7c="
|
| APP_DEBUG | "true"
|
| APP_URL | "https://profitshare.online"
|
| LOG_CHANNEL | "stack"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "localhost"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "profitsh_profit"
|
| DB_USERNAME | "profitsh_profit"
|
| DB_PASSWORD | "profitsh_profit"
|
| BROADCAST_DRIVER | "log"
|
| CACHE_DRIVER | "file"
|
| QUEUE_CONNECTION | "sync"
|
| SESSION_DRIVER | "file"
|
| SESSION_LIFETIME | "120"
|
| REDIS_HOST | "127.0.0.1"
|
| REDIS_PASSWORD | "null"
|
| REDIS_PORT | "6379"
|
| MAIL_DRIVER | "smtp"
|
| MAIL_HOST | "smtp.mailtrap.io"
|
| MAIL_PORT | "2525"
|
| MAIL_USERNAME | "null"
|
| MAIL_PASSWORD | "null"
|
| MAIL_ENCRYPTION | "null"
|
| PUSHER_APP_ID | "" |
| PUSHER_APP_KEY | "" |
| PUSHER_APP_SECRET | "" |
| MOLLIE_KEY | "test_5HcWVs9qc5pzy36H9Tu9mwAyats33J"
|