string(169053) " Whoops! There was an error.
Symfony \ Component \ ErrorHandler \ Error \ FatalError
During inheritance of ArrayAccess: Uncaught ErrorException: Return type of Illuminate\Support\Collection::offsetExists($key) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349 Stack trace: #0 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/foryougo/...', 1349) #1 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(571): include('/home/foryougo/...') #2 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile('/home/foryougo/...') #3 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...') #4 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array) #5 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases') #6 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases() #7 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application)) #8 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array) #9 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap() #10 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request)) #11 /home/foryougo/public_html/workers/public/index.php(55): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request)) #12 {main} Symfony\Component\ErrorHandler\Error\FatalError thrown with message "During inheritance of ArrayAccess: Uncaught ErrorException: Return type of Illuminate\Support\Collection::offsetExists($key) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349 Stack trace: #0 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/foryougo/...', 1349) #1 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(571): include('/home/foryougo/...') #2 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile('/home/foryougo/...') #3 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...') #4 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array) #5 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases') #6 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases() #7 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application)) #8 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array) #9 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap() #10 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request)) #11 /home/foryougo/public_html/workers/public/index.php(55): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request)) #12 {main}" Stacktrace: #0 Symfony\Component\ErrorHandler\Error\FatalError in /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php:11
0
Symfony\Component\ErrorHandler\Error\FatalError
/vendor/laravel/framework/src/Illuminate/Support/Collection.php11
/home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php
<?php
 
namespace Illuminate\Support;
 
use ArrayAccess;
use ArrayIterator;
use Illuminate\Support\Traits\EnumeratesValues;
use Illuminate\Support\Traits\Macroable;
use stdClass;
 
class Collection implements ArrayAccess, Enumerable
{
    use EnumeratesValues, Macroable;
 
    /**
     * The items contained in the collection.
     *
     * @var array
     */
    protected $items = [];
 
    /**
     * Create a new collection.
     *
     * @param  mixed  $items
     * @return void
     */
    public function __construct($items = [])
    {
        $this->items = $this->getArrayableItems($items);
    }
 
    /**
     * Create a new collection by invoking the callback a given amount of times.
     *
     * @param  int  $number
     * @param  callable|null  $callback
     * @return static
     */
    public static function times($number, callable $callback = null)
Arguments
  1. """
    During inheritance of ArrayAccess: Uncaught ErrorException: Return type of Illuminate\Support\Collection::offsetExists($key) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
    Stack trace:\n
    #0 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/foryougo/...', 1349)\n
    #1 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(571): include('/home/foryougo/...')\n
    #2 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile('/home/foryougo/...')\n
    #3 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n
    #4 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n
    #5 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n
    #6 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
    #7 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n
    #8 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n
    #9 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
    #10 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n
    #11 /home/foryougo/public_html/workers/public/index.php(55): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n
    #12 {main}
    """
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
USER
"foryougo"
HOME
"/home/foryougo"
SCRIPT_NAME
"/public/index.php"
REQUEST_URI
"/api/general"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.1"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/public/api/general"
REMOTE_PORT
"57368"
SCRIPT_FILENAME
"/home/foryougo/public_html/workers/public/index.php"
SERVER_ADMIN
"webmaster@workers.foryougo.net"
CONTEXT_DOCUMENT_ROOT
"/home/foryougo/public_html/workers"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"https"
DOCUMENT_ROOT
"/home/foryougo/public_html/workers"
REMOTE_ADDR
"213.165.244.39"
SERVER_PORT
"443"
SERVER_ADDR
"213.165.244.39"
SERVER_NAME
"workers.foryougo.net"
SERVER_SOFTWARE
"Apache"
SERVER_SIGNATURE
""
PATH
"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin"
HTTP_USER_AGENT
"GuzzleHttp/7"
HTTP_HOST
"workers.foryougo.net"
proxy-nokeepalive
"1"
SSL_TLS_SNI
"workers.foryougo.net"
HTTPS
"on"
UNIQUE_ID
"aVaG6A8fu1vRhFH_sndM9wAAAJY"
REDIRECT_STATUS
"200"
REDIRECT_SSL_TLS_SNI
"workers.foryougo.net"
REDIRECT_HTTPS
"on"
REDIRECT_UNIQUE_ID
"aVaG6A8fu1vRhFH_sndM9wAAAJY"
REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_REDIRECT_SSL_TLS_SNI
"workers.foryougo.net"
REDIRECT_REDIRECT_HTTPS
"on"
REDIRECT_REDIRECT_UNIQUE_ID
"aVaG6A8fu1vRhFH_sndM9wAAAJY"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1767278312.4059
REQUEST_TIME
1767278312
argv
[]
argc
0
APP_NAME
"Laravel"
APP_ENV
"production"
APP_KEY
"base64:gfTDsliVx60i8+1pKsyxrls/wDtGxb8Id/QliQHvHRw="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"foryougo_workers"
DB_USERNAME
"foryougo_islam"
DB_PASSWORD
"islam_123456789"
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_MAILER
"smtp"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"null"
MAIL_PASSWORD
"null"
MAIL_ENCRYPTION
"null"
MAIL_FROM_ADDRESS
"null"
MAIL_FROM_NAME
"Laravel"
CLOUDINARY_API_KEY
"621842566526228"
CLOUDINARY_API_SECRET
"awpOP_d2_P52zLF15YQAe9qdeWI"
CLOUDINARY_CLOUD_NAME
"dprzmvqoh"
CLOUDINARY_URL
"cloudinary://621842566526228:awpOP_d2_P52zLF15YQAe9qdeWI@dprzmvqoh"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
GOOGLE_MAPS_API_KEY
"AIzaSyCcQFZLJBQyZ_ii6DPFR5bgx-zFFm1nTD0"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
Key Value
APP_NAME
"Laravel"
APP_ENV
"production"
APP_KEY
"base64:gfTDsliVx60i8+1pKsyxrls/wDtGxb8Id/QliQHvHRw="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"foryougo_workers"
DB_USERNAME
"foryougo_islam"
DB_PASSWORD
"islam_123456789"
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_MAILER
"smtp"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"null"
MAIL_PASSWORD
"null"
MAIL_ENCRYPTION
"null"
MAIL_FROM_ADDRESS
"null"
MAIL_FROM_NAME
"Laravel"
CLOUDINARY_API_KEY
"621842566526228"
CLOUDINARY_API_SECRET
"awpOP_d2_P52zLF15YQAe9qdeWI"
CLOUDINARY_CLOUD_NAME
"dprzmvqoh"
CLOUDINARY_URL
"cloudinary://621842566526228:awpOP_d2_P52zLF15YQAe9qdeWI@dprzmvqoh"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
GOOGLE_MAPS_API_KEY
"AIzaSyCcQFZLJBQyZ_ii6DPFR5bgx-zFFm1nTD0"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
0. Whoops\Handler\PrettyPageHandler
" Server error: `GET https://workers.foryougo.net/api/workers_filter` resulted in a `500 Internal Server Error` response: <!DOCTYPE html><!-- Symfony\Component\ErrorHandler\Error\FatalError: During inheritance of ArrayAccess: Uncaught Error (truncated...)