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/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349 Stack trace: #0 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError() #1 /home/arrowin1/allopath.com/vendor/composer/ClassLoader.php(571): include('/home/arrowin1/...') #2 /home/arrowin1/allopath.com/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile() #3 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass() #4 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect() #5 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config() #6 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases() #7 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap() #8 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith() #9 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap() #10 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter() #11 /home/arrowin1/allopath.com/public/index.php(54): Illuminate\Foundation\Http\Kernel->handle() #12 /home/arrowin1/allopath.com/index.php(21): require_once('/home/arrowin1/...') #13 {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/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349 Stack trace: #0 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError() #1 /home/arrowin1/allopath.com/vendor/composer/ClassLoader.php(571): include('/home/arrowin1/...') #2 /home/arrowin1/allopath.com/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile() #3 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass() #4 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect() #5 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config() #6 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases() #7 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap() #8 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith() #9 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap() #10 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter() #11 /home/arrowin1/allopath.com/public/index.php(54): Illuminate\Foundation\Http\Kernel->handle() #12 /home/arrowin1/allopath.com/index.php(21): require_once('/home/arrowin1/...') #13 {main}" Stacktrace: #0 Symfony\Component\ErrorHandler\Error\FatalError in /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Support/Collection.php:11
0
Symfony\Component\ErrorHandler\Error\FatalError
/vendor/laravel/framework/src/Illuminate/Support/Collection.php11
/home/arrowin1/allopath.com/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/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
    Stack trace:\n
    #0 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError()\n
    #1 /home/arrowin1/allopath.com/vendor/composer/ClassLoader.php(571): include('/home/arrowin1/...')\n
    #2 /home/arrowin1/allopath.com/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile()\n
    #3 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass()\n
    #4 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect()\n
    #5 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config()\n
    #6 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
    #7 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap()\n
    #8 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith()\n
    #9 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
    #10 /home/arrowin1/allopath.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()\n
    #11 /home/arrowin1/allopath.com/public/index.php(54): Illuminate\Foundation\Http\Kernel->handle()\n
    #12 /home/arrowin1/allopath.com/index.php(21): require_once('/home/arrowin1/...')\n
    #13 {main}
    """
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
HTTP_ACCEPT
"*/*"
CONTENT_LENGTH
"0"
HTTP_HOST
"allopath.com"
HTTP_USER_AGENT
"claudebot"
HTTP_X_HTTPS
"1"
REDIRECT_UNIQUE_ID
"Zfj1b5HFCqbjjN9CB2QuHAACggM"
REDIRECT_SCRIPT_URL
"/epharmacy"
REDIRECT_SCRIPT_URI
"https://allopath.com/epharmacy"
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"allopath.com"
REDIRECT_HTTP2
"on"
REDIRECT_H2PUSH
"off"
REDIRECT_H2_PUSH
"off"
REDIRECT_H2_PUSHED
""
REDIRECT_H2_PUSHED_ON
""
REDIRECT_H2_STREAM_ID
"3"
REDIRECT_H2_STREAM_TAG
"11365-591-3"
REDIRECT_STATUS
"200"
UNIQUE_ID
"Zfj1b5HFCqbjjN9CB2QuHAACggM"
SCRIPT_URL
"/epharmacy"
SCRIPT_URI
"https://allopath.com/epharmacy"
HTTPS
"on"
SSL_TLS_SNI
"allopath.com"
HTTP2
"on"
H2PUSH
"off"
H2_PUSH
"off"
H2_PUSHED
""
H2_PUSHED_ON
""
H2_STREAM_ID
"3"
H2_STREAM_TAG
"11365-591-3"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
SERVER_NAME
"allopath.com"
SERVER_ADDR
"193.70.125.49"
SERVER_PORT
"443"
REMOTE_ADDR
"34.237.245.80"
DOCUMENT_ROOT
"/home/arrowin1/allopath.com"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home/arrowin1/allopath.com"
SERVER_ADMIN
"webmaster@allopath.arrowinfosystem.in"
SCRIPT_FILENAME
"/home/arrowin1/allopath.com/index.php"
REMOTE_PORT
"52016"
REDIRECT_URL
"/epharmacy"
SERVER_PROTOCOL
"HTTP/2.0"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/epharmacy"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1710814575.6249
REQUEST_TIME
1710814575
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:F64c35FeG0CEjPPSmFmyXIlt2Qn8fbTYtiOQ+0stqYM="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"arrowin1_allopaths"
DB_USERNAME
"arrowin1_allopaths"
DB_PASSWORD
"8p(*a$p;pf;a"
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"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
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
"local"
APP_KEY
"base64:F64c35FeG0CEjPPSmFmyXIlt2Qn8fbTYtiOQ+0stqYM="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"arrowin1_allopaths"
DB_USERNAME
"arrowin1_allopaths"
DB_PASSWORD
"8p(*a$p;pf;a"
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"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
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