ErrorException (E_NOTICE)
include(): read of 2294 bytes failed with errno=12 Cannot allocate memory ErrorException thrown with message "include(): read of 2294 bytes failed with errno=12 Cannot allocate memory" Stacktrace: #13 ErrorException in /home/bestarabicmassag/public_html/core/vendor/composer/ClassLoader.php:571 #12 include in /home/bestarabicmassag/public_html/core/vendor/composer/ClassLoader.php:571 #11 Composer\Autoload\includeFile in /home/bestarabicmassag/public_html/core/vendor/composer/ClassLoader.php:428 #10 Composer\Autoload\ClassLoader:loadClass in [internal]:0 #9 spl_autoload_call in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:720 #8 Illuminate\Foundation\Application:resolveProvider in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:654 #7 Illuminate\Foundation\Application:register in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php:75 #6 Illuminate\Foundation\ProviderRepository:load in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:634 #5 Illuminate\Foundation\Application:registerConfiguredProviders in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php:17 #4 Illuminate\Foundation\Bootstrap\RegisterProviders:bootstrap in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:237 #3 Illuminate\Foundation\Application:bootstrapWith in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:152 #2 Illuminate\Foundation\Http\Kernel:bootstrap in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:136 #1 Illuminate\Foundation\Http\Kernel:sendRequestThroughRouter in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:110 #0 Illuminate\Foundation\Http\Kernel:handle in /home/bestarabicmassag/public_html/index.php:52
13
ErrorException
/vendor/composer/ClassLoader.php571
12
include
/vendor/composer/ClassLoader.php571
11
Composer\Autoload\includeFile
/vendor/composer/ClassLoader.php428
10
Composer\Autoload\ClassLoader loadClass
[internal]0
9
spl_autoload_call
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php720
8
Illuminate\Foundation\Application resolveProvider
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php654
7
Illuminate\Foundation\Application register
/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php75
6
Illuminate\Foundation\ProviderRepository load
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php634
5
Illuminate\Foundation\Application registerConfiguredProviders
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php17
4
Illuminate\Foundation\Bootstrap\RegisterProviders bootstrap
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php237
3
Illuminate\Foundation\Application bootstrapWith
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php152
2
Illuminate\Foundation\Http\Kernel bootstrap
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php136
1
Illuminate\Foundation\Http\Kernel sendRequestThroughRouter
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php110
0
Illuminate\Foundation\Http\Kernel handle
/home/bestarabicmassag/public_html/index.php52
/home/bestarabicmassag/public_html/core/vendor/composer/ClassLoader.php
        if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
            return $file;
        }
 
        return false;
    }
}
 
/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 *
 * @param  string $file
 * @return void
 * @private
 */
function includeFile($file)
{
    include $file;
}
 
Arguments
  1. "include(): read of 2294 bytes failed with errno=12 Cannot allocate memory"
    
/home/bestarabicmassag/public_html/core/vendor/composer/ClassLoader.php
        if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
            return $file;
        }
 
        return false;
    }
}
 
/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 *
 * @param  string $file
 * @return void
 * @private
 */
function includeFile($file)
{
    include $file;
}
 
/home/bestarabicmassag/public_html/core/vendor/composer/ClassLoader.php
     */
    public function unregister()
    {
        spl_autoload_unregister(array($this, 'loadClass'));
 
        if (null !== $this->vendorDir) {
            unset(self::$registeredLoaders[$this->vendorDir]);
        }
    }
 
    /**
     * Loads the given class or interface.
     *
     * @param  string    $class The name of the class
     * @return true|null True if loaded, null otherwise
     */
    public function loadClass($class)
    {
        if ($file = $this->findFile($class)) {
            includeFile($file);
 
            return true;
        }
 
        return null;
    }
 
    /**
     * Finds the path to the file where the class is defined.
     *
     * @param string $class The name of the class
     *
     * @return string|false The path if found, false otherwise
     */
    public function findFile($class)
    {
        // class map lookup
        if (isset($this->classMap[$class])) {
            return $this->classMap[$class];
        }
Arguments
  1. "/home/bestarabicmassag/public_html/core/vendor/composer/../laravel/framework/src/Illuminate/Foundation/Providers/FoundationServiceProvider.php"
    
[internal]
Arguments
  1. "Illuminate\Foundation\Providers\FoundationServiceProvider"
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
     * @return array
     */
    public function getProviders($provider)
    {
        $name = is_string($provider) ? $provider : get_class($provider);
 
        return Arr::where($this->serviceProviders, function ($value) use ($name) {
            return $value instanceof $name;
        });
    }
 
    /**
     * Resolve a service provider instance from the class name.
     *
     * @param  string  $provider
     * @return \Illuminate\Support\ServiceProvider
     */
    public function resolveProvider($provider)
    {
        return new $provider($this);
    }
 
    /**
     * Mark the given provider as registered.
     *
     * @param  \Illuminate\Support\ServiceProvider  $provider
     * @return void
     */
    protected function markAsRegistered($provider)
    {
        $this->serviceProviders[] = $provider;
 
        $this->loadedProviders[get_class($provider)] = true;
    }
 
    /**
     * Load and boot all of the remaining deferred providers.
     *
     * @return void
     */
Arguments
  1. "Illuminate\Foundation\Providers\FoundationServiceProvider"
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    }
 
    /**
     * Register a service provider with the application.
     *
     * @param  \Illuminate\Support\ServiceProvider|string  $provider
     * @param  bool  $force
     * @return \Illuminate\Support\ServiceProvider
     */
    public function register($provider, $force = false)
    {
        if (($registered = $this->getProvider($provider)) && ! $force) {
            return $registered;
        }
 
        // If the given "provider" is a string, we will resolve it, passing in the
        // application instance automatically for the developer. This is simply
        // a more convenient way of specifying your service provider classes.
        if (is_string($provider)) {
            $provider = $this->resolveProvider($provider);
        }
 
        $provider->register();
 
        // If there are bindings / singletons set as properties on the provider we
        // will spin through them and register them with the application, which
        // serves as a convenience layer while registering a lot of bindings.
        if (property_exists($provider, 'bindings')) {
            foreach ($provider->bindings as $key => $value) {
                $this->bind($key, $value);
            }
        }
 
        if (property_exists($provider, 'singletons')) {
            foreach ($provider->singletons as $key => $value) {
                $this->singleton($key, $value);
            }
        }
 
        $this->markAsRegistered($provider);
Arguments
  1. "Illuminate\Foundation\Providers\FoundationServiceProvider"
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php
 
        // First we will load the service manifest, which contains information on all
        // service providers registered with the application and which services it
        // provides. This is used to know which services are "deferred" loaders.
        if ($this->shouldRecompile($manifest, $providers)) {
            $manifest = $this->compileManifest($providers);
        }
 
        // Next, we will register events to load the providers for each of the events
        // that it has requested. This allows the service provider to defer itself
        // while still getting automatically loaded when a certain event occurs.
        foreach ($manifest['when'] as $provider => $events) {
            $this->registerLoadEvents($provider, $events);
        }
 
        // We will go ahead and register all of the eagerly loaded providers with the
        // application so their services can be registered with the application as
        // a provided service. Then we will set the deferred service list on it.
        foreach ($manifest['eager'] as $provider) {
            $this->app->register($provider);
        }
 
        $this->app->addDeferredServices($manifest['deferred']);
    }
 
    /**
     * Load the service provider manifest JSON file.
     *
     * @return array|null
     */
    public function loadManifest()
    {
        // The service manifest is a file containing a JSON representation of every
        // service provided by the application and whether its provider is using
        // deferred loading or should be eagerly loaded on each request to us.
        if ($this->files->exists($this->manifestPath)) {
            $manifest = $this->files->getRequire($this->manifestPath);
 
            if ($manifest) {
                return array_merge(['when' => []], $manifest);
Arguments
  1. "Illuminate\Foundation\Providers\FoundationServiceProvider"
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    {
        return $this['env'] === 'testing';
    }
 
    /**
     * Register all of the configured providers.
     *
     * @return void
     */
    public function registerConfiguredProviders()
    {
        $providers = Collection::make($this->config['app.providers'])
                        ->partition(function ($provider) {
                            return strpos($provider, 'Illuminate\\') === 0;
                        });
 
        $providers->splice(1, 0, [$this->make(PackageManifest::class)->providers()]);
 
        (new ProviderRepository($this, new Filesystem, $this->getCachedServicesPath()))
                    ->load($providers->collapse()->toArray());
    }
 
    /**
     * Register a service provider with the application.
     *
     * @param  \Illuminate\Support\ServiceProvider|string  $provider
     * @param  bool  $force
     * @return \Illuminate\Support\ServiceProvider
     */
    public function register($provider, $force = false)
    {
        if (($registered = $this->getProvider($provider)) && ! $force) {
            return $registered;
        }
 
        // If the given "provider" is a string, we will resolve it, passing in the
        // application instance automatically for the developer. This is simply
        // a more convenient way of specifying your service provider classes.
        if (is_string($provider)) {
            $provider = $this->resolveProvider($provider);
Arguments
  1. array:52 [
      0 => "Illuminate\Auth\AuthServiceProvider"
      1 => "Illuminate\Broadcasting\BroadcastServiceProvider"
      2 => "Illuminate\Bus\BusServiceProvider"
      3 => "Illuminate\Cache\CacheServiceProvider"
      4 => "Illuminate\Foundation\Providers\ConsoleSupportServiceProvider"
      5 => "Illuminate\Cookie\CookieServiceProvider"
      6 => "Illuminate\Database\DatabaseServiceProvider"
      7 => "Illuminate\Encryption\EncryptionServiceProvider"
      8 => "Illuminate\Filesystem\FilesystemServiceProvider"
      9 => "Illuminate\Foundation\Providers\FoundationServiceProvider"
      10 => "Illuminate\Hashing\HashServiceProvider"
      11 => "Illuminate\Mail\MailServiceProvider"
      12 => "Illuminate\Notifications\NotificationServiceProvider"
      13 => "Illuminate\Pagination\PaginationServiceProvider"
      14 => "Illuminate\Pipeline\PipelineServiceProvider"
      15 => "Illuminate\Queue\QueueServiceProvider"
      16 => "Illuminate\Redis\RedisServiceProvider"
      17 => "Illuminate\Auth\Passwords\PasswordResetServiceProvider"
      18 => "Illuminate\Session\SessionServiceProvider"
      19 => "Illuminate\Translation\TranslationServiceProvider"
      20 => "Illuminate\Validation\ValidationServiceProvider"
      21 => "Illuminate\View\ViewServiceProvider"
      22 => "Anhskohbo\NoCaptcha\NoCaptchaServiceProvider"
      23 => "Barryvdh\TranslationManager\ManagerServiceProvider"
      24 => "Facade\Ignition\IgnitionServiceProvider"
      25 => "Fideloper\Proxy\TrustedProxyServiceProvider"
      26 => "Fruitcake\Cors\CorsServiceProvider"
      27 => "Jenssegers\Agent\AgentServiceProvider"
      28 => "Laravel\Fortify\FortifyServiceProvider"
      29 => "Laravel\Jetstream\JetstreamServiceProvider"
      30 => "Laravel\Sanctum\SanctumServiceProvider"
      31 => "Laravel\Socialite\SocialiteServiceProvider"
      32 => "Laravel\Tinker\TinkerServiceProvider"
      33 => "Laravel\Ui\UiServiceProvider"
      34 => "Collective\Html\HtmlServiceProvider"
      35 => "Livewire\LivewireServiceProvider"
      36 => "Carbon\Laravel\ServiceProvider"
      37 => "NunoMaduro\Collision\Adapters\Laravel\CollisionServiceProvider"
      38 => "RachidLaasri\LaravelInstaller\Providers\LaravelInstallerServiceProvider"
      39 => "Tanmuhittin\LaravelGoogleTranslate\LaravelGoogleTranslateServiceProvider"
      40 => "Torann\GeoIP\GeoIPServiceProvider"
      41 => "Anhskohbo\NoCaptcha\NoCaptchaServiceProvider"
      42 => "Barryvdh\TranslationManager\ManagerServiceProvider"
      43 => "Collective\Html\HtmlServiceProvider"
      44 => "Laravel\Socialite\SocialiteServiceProvider"
      45 => "Torann\GeoIP\GeoIPServiceProvider"
      46 => "App\Providers\AppServiceProvider"
      47 => "App\Providers\AuthServiceProvider"
      48 => "App\Providers\EventServiceProvider"
      49 => "App\Providers\RouteServiceProvider"
      50 => "App\Providers\FortifyServiceProvider"
      51 => "App\Providers\JetstreamServiceProvider"
    ]
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php
<?php
 
namespace Illuminate\Foundation\Bootstrap;
 
use Illuminate\Contracts\Foundation\Application;
 
class RegisterProviders
{
    /**
     * Bootstrap the given application.
     *
     * @param  \Illuminate\Contracts\Foundation\Application  $app
     * @return void
     */
    public function bootstrap(Application $app)
    {
        $app->registerConfiguredProviders();
    }
}
 
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    {
        $this->register(new EventServiceProvider($this));
        $this->register(new LogServiceProvider($this));
        $this->register(new RoutingServiceProvider($this));
    }
 
    /**
     * Run the given array of bootstrap classes.
     *
     * @param  string[]  $bootstrappers
     * @return void
     */
    public function bootstrapWith(array $bootstrappers)
    {
        $this->hasBeenBootstrapped = true;
 
        foreach ($bootstrappers as $bootstrapper) {
            $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
 
            $this->make($bootstrapper)->bootstrap($this);
 
            $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
        }
    }
 
    /**
     * Register a callback to run after loading the environment.
     *
     * @param  \Closure  $callback
     * @return void
     */
    public function afterLoadingEnvironment(Closure $callback)
    {
        return $this->afterBootstrapping(
            LoadEnvironmentVariables::class, $callback
        );
    }
 
    /**
     * Register a callback to run before a bootstrapper.
Arguments
  1. Illuminate\Foundation\Application {#2}
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
 
        Facade::clearResolvedInstance('request');
 
        $this->bootstrap();
 
        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }
 
    /**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
 
    /**
     * Get the route dispatcher callback.
     *
     * @return \Closure
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
Arguments
  1. array:6 [
      0 => "Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables"
      1 => "Illuminate\Foundation\Bootstrap\LoadConfiguration"
      2 => "Illuminate\Foundation\Bootstrap\HandleExceptions"
      3 => "Illuminate\Foundation\Bootstrap\RegisterFacades"
      4 => "Illuminate\Foundation\Bootstrap\RegisterProviders"
      5 => "Illuminate\Foundation\Bootstrap\BootProviders"
    ]
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
        $this->app['events']->dispatch(
            new RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
    {
        $this->app->instance('request', $request);
 
        Facade::clearResolvedInstance('request');
 
        $this->bootstrap();
 
        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }
 
    /**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
 
    /**
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
    public function __construct(Application $app, Router $router)
    {
        $this->app = $app;
        $this->router = $router;
 
        $this->syncMiddlewareToRouter();
    }
 
    /**
     * Handle an incoming HTTP request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function handle($request)
    {
        try {
            $request->enableHttpMethodParameterOverride();
 
            $response = $this->sendRequestThroughRouter($request);
        } catch (Throwable $e) {
            $this->reportException($e);
 
            $response = $this->renderException($request, $e);
        }
 
        $this->app['events']->dispatch(
            new RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:4 [
        0 => "text/html"
        1 => "application/xhtml+xml"
        2 => "application/xml"
        3 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      pathInfo: "/"
      requestUri: "/?products/10802768/"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    
/home/bestarabicmassag/public_html/index.php
require __DIR__.'/core/vendor/autoload.php';

/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/

$app = require_once __DIR__.'/core/bootstrap/app.php';

$kernel = $app->make(Kernel::class);

$response = tap($kernel->handle(
    $request = Request::capture()
))->send();

$kernel->terminate($request, $response);
 
Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:4 [
        0 => "text/html"
        1 => "application/xhtml+xml"
        2 => "application/xml"
        3 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      pathInfo: "/"
      requestUri: "/?products/10802768/"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    

Environment & details:

Key Value
products/10802768/
""
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
HTTP_ACCEPT_ENCODING
"br,gzip"
HTTP_ACCEPT_LANGUAGE
"en-US,en;q=0.5"
HTTP_HOST
"bestarabicmassage.com"
HTTP_USER_AGENT
"CCBot/2.0 (https://commoncrawl.org/faq/)"
HTTP_X_HTTPS
"1"
DOCUMENT_ROOT
"/home/bestarabicmassag/public_html"
REMOTE_ADDR
"18.97.14.81"
REMOTE_PORT
"33798"
SERVER_ADDR
"94.130.218.167"
SERVER_NAME
"bestarabicmassage.com"
SERVER_ADMIN
"webmaster@bestarabicmassage.com"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/?products/10802768/"
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/bestarabicmassag/public_html/index.php"
QUERY_STRING
"products/10802768/"
SCRIPT_URI
"https://bestarabicmassage.com/"
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
1765708025.375
REQUEST_TIME
1765708025
argv
array:1 [
  0 => "products/10802768/"
]
argc
1
APP_NAME
"bestarabicmassage.com"
APP_ENV
"local"
APP_KEY
"base64:Q6znvJuY392nETxggfOAyAMNBQAWEekSpCqMsMOCYto="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://bestarabicmassage.com/"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"bestarabicmassag_ad"
DB_USERNAME
"bestarabicmassag_sow"
DB_PASSWORD
"soon_sow2023"
DB_TABLE_PREFIX
"smartend_"
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
""
MAIL_PASSWORD
""
MAIL_ENCRYPTION
""
MAIL_FROM_ADDRESS
"admin@bestarabicmassage.com"
MAIL_FROM_NAME
"bestarabicmassage.com"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
""
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
NOCAPTCHA_STATUS
"0"
NOCAPTCHA_SECRET
""
NOCAPTCHA_SITEKEY
""
BACKEND_PATH
"admin"
BACKEND_PAGINATION
"30"
FRONTEND_PAGINATION
"20"
FRONTEND_TOPICS_ORDER
"asc"
DEFAULT_LANGUAGE
"en"
NO_REPLAY_EMAIL
"noreplay@site.com"
FACEBOOK_STATUS
"0"
FACEBOOK_ID
""
FACEBOOK_SECRET
""
TWITTER_STATUS
"0"
TWITTER_ID
""
TWITTER_SECRET
""
GOOGLE_STATUS
"0"
GOOGLE_ID
""
GOOGLE_SECRET
""
LINKEDIN_STATUS
"0"
LINKEDIN_ID
""
LINKEDIN_SECRET
""
GITHUB_STATUS
"0"
GITHUB_ID
""
GITHUB_SECRET
""
BITBUCKET_STATUS
"0"
BITBUCKET_ID
""
BITBUCKET_SECRET
""
TIMEZONE
"Asia/Dubai"
GOOGLE_MAPS_KEY
""
GEOIP_STATUS
"1"
GEOIP_SERVICE
"ipgeolocation"
GEOIP_SERVICE_KEY
"aa67880cc84144fc8d04e9042050cbdc"
FIRST_DAY_OF_WEEK
"0"
DATE_FORMAT
"Y-m-d"
Key Value
APP_NAME
"bestarabicmassage.com"
APP_ENV
"local"
APP_KEY
"base64:Q6znvJuY392nETxggfOAyAMNBQAWEekSpCqMsMOCYto="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://bestarabicmassage.com/"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"bestarabicmassag_ad"
DB_USERNAME
"bestarabicmassag_sow"
DB_PASSWORD
"soon_sow2023"
DB_TABLE_PREFIX
"smartend_"
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
""
MAIL_PASSWORD
""
MAIL_ENCRYPTION
""
MAIL_FROM_ADDRESS
"admin@bestarabicmassage.com"
MAIL_FROM_NAME
"bestarabicmassage.com"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
""
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
NOCAPTCHA_STATUS
"0"
NOCAPTCHA_SECRET
""
NOCAPTCHA_SITEKEY
""
BACKEND_PATH
"admin"
BACKEND_PAGINATION
"30"
FRONTEND_PAGINATION
"20"
FRONTEND_TOPICS_ORDER
"asc"
DEFAULT_LANGUAGE
"en"
NO_REPLAY_EMAIL
"noreplay@site.com"
FACEBOOK_STATUS
"0"
FACEBOOK_ID
""
FACEBOOK_SECRET
""
TWITTER_STATUS
"0"
TWITTER_ID
""
TWITTER_SECRET
""
GOOGLE_STATUS
"0"
GOOGLE_ID
""
GOOGLE_SECRET
""
LINKEDIN_STATUS
"0"
LINKEDIN_ID
""
LINKEDIN_SECRET
""
GITHUB_STATUS
"0"
GITHUB_ID
""
GITHUB_SECRET
""
BITBUCKET_STATUS
"0"
BITBUCKET_ID
""
BITBUCKET_SECRET
""
TIMEZONE
"Asia/Dubai"
GOOGLE_MAPS_KEY
""
GEOIP_STATUS
"1"
GEOIP_SERVICE
"ipgeolocation"
GEOIP_SERVICE_KEY
"aa67880cc84144fc8d04e9042050cbdc"
FIRST_DAY_OF_WEEK
"0"
DATE_FORMAT
"Y-m-d"
0. Whoops\Handler\PrettyPageHandler
Whoops! There was an error.
Illuminate \ Contracts \ Container \ BindingResolutionException
Target class [session] does not exist.
Previous exceptions
  • Class session does not exist (-1)
Illuminate\Contracts\Container\BindingResolutionException thrown with message "Target class [session] does not exist." Stacktrace: #16 Illuminate\Contracts\Container\BindingResolutionException in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:832 #15 ReflectionException in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:830 #14 ReflectionClass:__construct in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:830 #13 Illuminate\Container\Container:build in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:712 #12 Illuminate\Container\Container:resolve in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:826 #11 Illuminate\Foundation\Application:resolve in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:651 #10 Illuminate\Container\Container:make in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:811 #9 Illuminate\Foundation\Application:make in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:980 #8 Illuminate\Container\Container:resolveClass in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:900 #7 Illuminate\Container\Container:resolveDependencies in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:861 #6 Illuminate\Container\Container:build in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:712 #5 Illuminate\Container\Container:resolve in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:826 #4 Illuminate\Foundation\Application:resolve in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php:651 #3 Illuminate\Container\Container:make in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:811 #2 Illuminate\Foundation\Application:make in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:205 #1 Illuminate\Foundation\Http\Kernel:terminateMiddleware in /home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:179 #0 Illuminate\Foundation\Http\Kernel:terminate in /home/bestarabicmassag/public_html/index.php:55
16
Illuminate\Contracts\Container\BindingResolutionException
/vendor/laravel/framework/src/Illuminate/Container/Container.php832
15
ReflectionException
/vendor/laravel/framework/src/Illuminate/Container/Container.php830
14
ReflectionClass __construct
/vendor/laravel/framework/src/Illuminate/Container/Container.php830
13
Illuminate\Container\Container build
/vendor/laravel/framework/src/Illuminate/Container/Container.php712
12
Illuminate\Container\Container resolve
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php826
11
Illuminate\Foundation\Application resolve
/vendor/laravel/framework/src/Illuminate/Container/Container.php651
10
Illuminate\Container\Container make
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php811
9
Illuminate\Foundation\Application make
/vendor/laravel/framework/src/Illuminate/Container/Container.php980
8
Illuminate\Container\Container resolveClass
/vendor/laravel/framework/src/Illuminate/Container/Container.php900
7
Illuminate\Container\Container resolveDependencies
/vendor/laravel/framework/src/Illuminate/Container/Container.php861
6
Illuminate\Container\Container build
/vendor/laravel/framework/src/Illuminate/Container/Container.php712
5
Illuminate\Container\Container resolve
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php826
4
Illuminate\Foundation\Application resolve
/vendor/laravel/framework/src/Illuminate/Container/Container.php651
3
Illuminate\Container\Container make
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php811
2
Illuminate\Foundation\Application make
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php205
1
Illuminate\Foundation\Http\Kernel terminateMiddleware
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php179
0
Illuminate\Foundation\Http\Kernel terminate
/home/bestarabicmassag/public_html/index.php55
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
     * Instantiate a concrete instance of the given type.
     *
     * @param  \Closure|string  $concrete
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function build($concrete)
    {
        // If the concrete type is actually a Closure, we will just execute it and
        // hand back the results of the functions, which allows functions to be
        // used as resolvers for more fine-tuned resolution of these objects.
        if ($concrete instanceof Closure) {
            return $concrete($this, $this->getLastParameterOverride());
        }
 
        try {
            $reflector = new ReflectionClass($concrete);
        } catch (ReflectionException $e) {
            throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
        }
 
        // If the type is not instantiable, the developer is attempting to resolve
        // an abstract type such as an Interface or Abstract Class and there is
        // no binding registered for the abstractions so we need to bail out.
        if (! $reflector->isInstantiable()) {
            return $this->notInstantiable($concrete);
        }
 
        $this->buildStack[] = $concrete;
 
        $constructor = $reflector->getConstructor();
 
        // If there are no constructors, that means there are no dependencies then
        // we can just resolve the instances of the objects right away, without
        // resolving any other types or dependencies out of these containers.
        if (is_null($constructor)) {
            array_pop($this->buildStack);
 
            return new $concrete;
Arguments
  1. "Target class [session] does not exist."
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
 
    /**
     * Instantiate a concrete instance of the given type.
     *
     * @param  \Closure|string  $concrete
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function build($concrete)
    {
        // If the concrete type is actually a Closure, we will just execute it and
        // hand back the results of the functions, which allows functions to be
        // used as resolvers for more fine-tuned resolution of these objects.
        if ($concrete instanceof Closure) {
            return $concrete($this, $this->getLastParameterOverride());
        }
 
        try {
            $reflector = new ReflectionClass($concrete);
        } catch (ReflectionException $e) {
            throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
        }
 
        // If the type is not instantiable, the developer is attempting to resolve
        // an abstract type such as an Interface or Abstract Class and there is
        // no binding registered for the abstractions so we need to bail out.
        if (! $reflector->isInstantiable()) {
            return $this->notInstantiable($concrete);
        }
 
        $this->buildStack[] = $concrete;
 
        $constructor = $reflector->getConstructor();
 
        // If there are no constructors, that means there are no dependencies then
        // we can just resolve the instances of the objects right away, without
        // resolving any other types or dependencies out of these containers.
        if (is_null($constructor)) {
            array_pop($this->buildStack);
Arguments
  1. "Class session does not exist"
    
Exception message: Class session does not exist
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
 
    /**
     * Instantiate a concrete instance of the given type.
     *
     * @param  \Closure|string  $concrete
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function build($concrete)
    {
        // If the concrete type is actually a Closure, we will just execute it and
        // hand back the results of the functions, which allows functions to be
        // used as resolvers for more fine-tuned resolution of these objects.
        if ($concrete instanceof Closure) {
            return $concrete($this, $this->getLastParameterOverride());
        }
 
        try {
            $reflector = new ReflectionClass($concrete);
        } catch (ReflectionException $e) {
            throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
        }
 
        // If the type is not instantiable, the developer is attempting to resolve
        // an abstract type such as an Interface or Abstract Class and there is
        // no binding registered for the abstractions so we need to bail out.
        if (! $reflector->isInstantiable()) {
            return $this->notInstantiable($concrete);
        }
 
        $this->buildStack[] = $concrete;
 
        $constructor = $reflector->getConstructor();
 
        // If there are no constructors, that means there are no dependencies then
        // we can just resolve the instances of the objects right away, without
        // resolving any other types or dependencies out of these containers.
        if (is_null($constructor)) {
            array_pop($this->buildStack);
Arguments
  1. "session"
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
        $needsContextualBuild = ! empty($parameters) || ! is_null($concrete);
 
        // If an instance of the type is currently being managed as a singleton we'll
        // just return an existing instance instead of instantiating new instances
        // so the developer can keep using the same objects instance every time.
        if (isset($this->instances[$abstract]) && ! $needsContextualBuild) {
            return $this->instances[$abstract];
        }
 
        $this->with[] = $parameters;
 
        if (is_null($concrete)) {
            $concrete = $this->getConcrete($abstract);
        }
 
        // We're ready to instantiate an instance of the concrete type registered for
        // the binding. This will instantiate the types, as well as resolve any of
        // its "nested" dependencies recursively until all have gotten resolved.
        if ($this->isBuildable($concrete, $abstract)) {
            $object = $this->build($concrete);
        } else {
            $object = $this->make($concrete);
        }
 
        // If we defined any extenders for this type, we'll need to spin through them
        // and apply them to the object being built. This allows for the extension
        // of services, such as changing configuration or decorating the object.
        foreach ($this->getExtenders($abstract) as $extender) {
            $object = $extender($object, $this);
        }
 
        // If the requested type is registered as a singleton we'll want to cache off
        // the instances in "memory" so we can return it later without creating an
        // entirely new instance of an object on each subsequent request for it.
        if ($this->isShared($abstract) && ! $needsContextualBuild) {
            $this->instances[$abstract] = $object;
        }
 
        if ($raiseEvents) {
            $this->fireResolvingCallbacks($abstract, $object);
Arguments
  1. "session"
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    public function make($abstract, array $parameters = [])
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
 
        return parent::make($abstract, $parameters);
    }
 
    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @param  bool  $raiseEvents
     * @return mixed
     */
    protected function resolve($abstract, $parameters = [], $raiseEvents = true)
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
 
        return parent::resolve($abstract, $parameters, $raiseEvents);
    }
 
    /**
     * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
     *
     * @param  string  $abstract
     * @return void
     */
    protected function loadDeferredProviderIfNeeded($abstract)
    {
        if ($this->isDeferredService($abstract) && ! isset($this->instances[$abstract])) {
            $this->loadDeferredProvider($abstract);
        }
    }
 
    /**
     * Determine if the given abstract type has been bound.
     *
     * @param  string  $abstract
     * @return bool
Arguments
  1. "session"
    
  2. []
    
  3. true
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function makeWith($abstract, array $parameters = [])
    {
        return $this->make($abstract, $parameters);
    }
 
    /**
     * Resolve the given type from the container.
     *
     * @param  string|callable  $abstract
     * @param  array  $parameters
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function make($abstract, array $parameters = [])
    {
        return $this->resolve($abstract, $parameters);
    }
 
    /**
     *  {@inheritdoc}
     */
    public function get($id)
    {
        try {
            return $this->resolve($id);
        } catch (Exception $e) {
            if ($this->has($id)) {
                throw $e;
            }
 
            throw new EntryNotFoundException($id, $e->getCode(), $e);
        }
    }
 
    /**
     * Resolve the given type from the container.
Arguments
  1. "session"
    
  2. []
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
 
        if (! $this->isBooted()) {
            $this->booting(function () use ($instance) {
                $this->bootProvider($instance);
            });
        }
    }
 
    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @return mixed
     */
    public function make($abstract, array $parameters = [])
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
 
        return parent::make($abstract, $parameters);
    }
 
    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @param  bool  $raiseEvents
     * @return mixed
     */
    protected function resolve($abstract, $parameters = [], $raiseEvents = true)
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
 
        return parent::resolve($abstract, $parameters, $raiseEvents);
    }
 
    /**
     * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
     *
Arguments
  1. "session"
    
  2. []
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
            return $parameter->getDefaultValue();
        }
 
        $this->unresolvablePrimitive($parameter);
    }
 
    /**
     * Resolve a class based dependency from the container.
     *
     * @param  \ReflectionParameter  $parameter
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    protected function resolveClass(ReflectionParameter $parameter)
    {
        try {
            return $parameter->isVariadic()
                        ? $this->resolveVariadicClass($parameter)
                        : $this->make(Util::getParameterClassName($parameter));
        }
 
        // If we can not resolve the class instance, we will check to see if the value
        // is optional, and if it is we will return the optional parameter value as
        // the value of the dependency, similarly to how we do this with scalars.
        catch (BindingResolutionException $e) {
            if ($parameter->isDefaultValueAvailable()) {
                return $parameter->getDefaultValue();
            }
 
            if ($parameter->isVariadic()) {
                return [];
            }
 
            throw $e;
        }
    }
 
    /**
     * Resolve a class based variadic dependency from the container.
Arguments
  1. "session"
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
    protected function resolveDependencies(array $dependencies)
    {
        $results = [];
 
        foreach ($dependencies as $dependency) {
            // If the dependency has an override for this particular build we will use
            // that instead as the value. Otherwise, we will continue with this run
            // of resolutions and let reflection attempt to determine the result.
            if ($this->hasParameterOverride($dependency)) {
                $results[] = $this->getParameterOverride($dependency);
 
                continue;
            }
 
            // If the class is null, it means the dependency is a string or some other
            // primitive type which we can not resolve since it is not a class and
            // we will just bomb out with an error since we have no-where to go.
            $result = is_null(Util::getParameterClassName($dependency))
                            ? $this->resolvePrimitive($dependency)
                            : $this->resolveClass($dependency);
 
            if ($dependency->isVariadic()) {
                $results = array_merge($results, $result);
            } else {
                $results[] = $result;
            }
        }
 
        return $results;
    }
 
    /**
     * Determine if the given dependency has a parameter override.
     *
     * @param  \ReflectionParameter  $dependency
     * @return bool
     */
    protected function hasParameterOverride($dependency)
    {
        return array_key_exists(
Arguments
  1. ReflectionParameter {#146
      +name: "manager"
      position: 0
      typeHint: "Illuminate\Session\SessionManager"
    }
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
        $this->buildStack[] = $concrete;
 
        $constructor = $reflector->getConstructor();
 
        // If there are no constructors, that means there are no dependencies then
        // we can just resolve the instances of the objects right away, without
        // resolving any other types or dependencies out of these containers.
        if (is_null($constructor)) {
            array_pop($this->buildStack);
 
            return new $concrete;
        }
 
        $dependencies = $constructor->getParameters();
 
        // Once we have all the constructor's parameters we can create each of the
        // dependency instances and then use the reflection instances to make a
        // new instance of this class, injecting the created dependencies in.
        try {
            $instances = $this->resolveDependencies($dependencies);
        } catch (BindingResolutionException $e) {
            array_pop($this->buildStack);
 
            throw $e;
        }
 
        array_pop($this->buildStack);
 
        return $reflector->newInstanceArgs($instances);
    }
 
    /**
     * Resolve all of the dependencies from the ReflectionParameters.
     *
     * @param  \ReflectionParameter[]  $dependencies
     * @return array
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    protected function resolveDependencies(array $dependencies)
Arguments
  1. array:2 [
      0 => ReflectionParameter {#146
        +name: "manager"
        position: 0
        typeHint: "Illuminate\Session\SessionManager"
      }
      1 => ReflectionParameter {#152
        +name: "cacheFactoryResolver"
        position: 1
        typeHint: "callable"
        default: null
      }
    ]
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
        $needsContextualBuild = ! empty($parameters) || ! is_null($concrete);
 
        // If an instance of the type is currently being managed as a singleton we'll
        // just return an existing instance instead of instantiating new instances
        // so the developer can keep using the same objects instance every time.
        if (isset($this->instances[$abstract]) && ! $needsContextualBuild) {
            return $this->instances[$abstract];
        }
 
        $this->with[] = $parameters;
 
        if (is_null($concrete)) {
            $concrete = $this->getConcrete($abstract);
        }
 
        // We're ready to instantiate an instance of the concrete type registered for
        // the binding. This will instantiate the types, as well as resolve any of
        // its "nested" dependencies recursively until all have gotten resolved.
        if ($this->isBuildable($concrete, $abstract)) {
            $object = $this->build($concrete);
        } else {
            $object = $this->make($concrete);
        }
 
        // If we defined any extenders for this type, we'll need to spin through them
        // and apply them to the object being built. This allows for the extension
        // of services, such as changing configuration or decorating the object.
        foreach ($this->getExtenders($abstract) as $extender) {
            $object = $extender($object, $this);
        }
 
        // If the requested type is registered as a singleton we'll want to cache off
        // the instances in "memory" so we can return it later without creating an
        // entirely new instance of an object on each subsequent request for it.
        if ($this->isShared($abstract) && ! $needsContextualBuild) {
            $this->instances[$abstract] = $object;
        }
 
        if ($raiseEvents) {
            $this->fireResolvingCallbacks($abstract, $object);
Arguments
  1. "Illuminate\Session\Middleware\StartSession"
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    public function make($abstract, array $parameters = [])
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
 
        return parent::make($abstract, $parameters);
    }
 
    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @param  bool  $raiseEvents
     * @return mixed
     */
    protected function resolve($abstract, $parameters = [], $raiseEvents = true)
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
 
        return parent::resolve($abstract, $parameters, $raiseEvents);
    }
 
    /**
     * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
     *
     * @param  string  $abstract
     * @return void
     */
    protected function loadDeferredProviderIfNeeded($abstract)
    {
        if ($this->isDeferredService($abstract) && ! isset($this->instances[$abstract])) {
            $this->loadDeferredProvider($abstract);
        }
    }
 
    /**
     * Determine if the given abstract type has been bound.
     *
     * @param  string  $abstract
     * @return bool
Arguments
  1. "Illuminate\Session\Middleware\StartSession"
    
  2. []
    
  3. true
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Container/Container.php
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function makeWith($abstract, array $parameters = [])
    {
        return $this->make($abstract, $parameters);
    }
 
    /**
     * Resolve the given type from the container.
     *
     * @param  string|callable  $abstract
     * @param  array  $parameters
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function make($abstract, array $parameters = [])
    {
        return $this->resolve($abstract, $parameters);
    }
 
    /**
     *  {@inheritdoc}
     */
    public function get($id)
    {
        try {
            return $this->resolve($id);
        } catch (Exception $e) {
            if ($this->has($id)) {
                throw $e;
            }
 
            throw new EntryNotFoundException($id, $e->getCode(), $e);
        }
    }
 
    /**
     * Resolve the given type from the container.
Arguments
  1. "Illuminate\Session\Middleware\StartSession"
    
  2. []
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
 
        if (! $this->isBooted()) {
            $this->booting(function () use ($instance) {
                $this->bootProvider($instance);
            });
        }
    }
 
    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @return mixed
     */
    public function make($abstract, array $parameters = [])
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
 
        return parent::make($abstract, $parameters);
    }
 
    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @param  bool  $raiseEvents
     * @return mixed
     */
    protected function resolve($abstract, $parameters = [], $raiseEvents = true)
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));
 
        return parent::resolve($abstract, $parameters, $raiseEvents);
    }
 
    /**
     * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
     *
Arguments
  1. "Illuminate\Session\Middleware\StartSession"
    
  2. []
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
                continue;
            }
 
            [$name] = $this->parseMiddleware($middleware);
 
            $instance = $this->app->make($name);
 
            if (method_exists($instance, 'terminate')) {
                $instance->terminate($request, $response);
            }
        }
    }
 
    /**
     * Gather the route middleware for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    protected function gatherRouteMiddleware($request)
    {
        if ($route = $request->route()) {
            return $this->router->gatherRouteMiddleware($route);
        }
 
        return [];
Arguments
  1. "Illuminate\Session\Middleware\StartSession"
    
/home/bestarabicmassag/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        $this->terminateMiddleware($request, $response);
 
        $this->app->terminate();
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );
 
        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:4 [
        0 => "text/html"
        1 => "application/xhtml+xml"
        2 => "application/xml"
        3 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      pathInfo: "/"
      requestUri: "/?products/10802768/"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    
  2. Illuminate\Http\Response {#156}
    
/home/bestarabicmassag/public_html/index.php
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/

$app = require_once __DIR__.'/core/bootstrap/app.php';

$kernel = $app->make(Kernel::class);

$response = tap($kernel->handle(
    $request = Request::capture()
))->send();

$kernel->terminate($request, $response);
 
Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:4 [
        0 => "text/html"
        1 => "application/xhtml+xml"
        2 => "application/xml"
        3 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      pathInfo: "/"
      requestUri: "/?products/10802768/"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    
  2. Illuminate\Http\Response {#156}
    

Environment & details:

Key Value
products/10802768/
""
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
HTTP_ACCEPT_ENCODING
"br,gzip"
HTTP_ACCEPT_LANGUAGE
"en-US,en;q=0.5"
HTTP_HOST
"bestarabicmassage.com"
HTTP_USER_AGENT
"CCBot/2.0 (https://commoncrawl.org/faq/)"
HTTP_X_HTTPS
"1"
DOCUMENT_ROOT
"/home/bestarabicmassag/public_html"
REMOTE_ADDR
"18.97.14.81"
REMOTE_PORT
"33798"
SERVER_ADDR
"94.130.218.167"
SERVER_NAME
"bestarabicmassage.com"
SERVER_ADMIN
"webmaster@bestarabicmassage.com"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/?products/10802768/"
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/bestarabicmassag/public_html/index.php"
QUERY_STRING
"products/10802768/"
SCRIPT_URI
"https://bestarabicmassage.com/"
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
1765708025.375
REQUEST_TIME
1765708025
argv
array:1 [
  0 => "products/10802768/"
]
argc
1
APP_NAME
"bestarabicmassage.com"
APP_ENV
"local"
APP_KEY
"base64:Q6znvJuY392nETxggfOAyAMNBQAWEekSpCqMsMOCYto="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://bestarabicmassage.com/"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"bestarabicmassag_ad"
DB_USERNAME
"bestarabicmassag_sow"
DB_PASSWORD
"soon_sow2023"
DB_TABLE_PREFIX
"smartend_"
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
""
MAIL_PASSWORD
""
MAIL_ENCRYPTION
""
MAIL_FROM_ADDRESS
"admin@bestarabicmassage.com"
MAIL_FROM_NAME
"bestarabicmassage.com"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
""
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
NOCAPTCHA_STATUS
"0"
NOCAPTCHA_SECRET
""
NOCAPTCHA_SITEKEY
""
BACKEND_PATH
"admin"
BACKEND_PAGINATION
"30"
FRONTEND_PAGINATION
"20"
FRONTEND_TOPICS_ORDER
"asc"
DEFAULT_LANGUAGE
"en"
NO_REPLAY_EMAIL
"noreplay@site.com"
FACEBOOK_STATUS
"0"
FACEBOOK_ID
""
FACEBOOK_SECRET
""
TWITTER_STATUS
"0"
TWITTER_ID
""
TWITTER_SECRET
""
GOOGLE_STATUS
"0"
GOOGLE_ID
""
GOOGLE_SECRET
""
LINKEDIN_STATUS
"0"
LINKEDIN_ID
""
LINKEDIN_SECRET
""
GITHUB_STATUS
"0"
GITHUB_ID
""
GITHUB_SECRET
""
BITBUCKET_STATUS
"0"
BITBUCKET_ID
""
BITBUCKET_SECRET
""
TIMEZONE
"Asia/Dubai"
GOOGLE_MAPS_KEY
""
GEOIP_STATUS
"1"
GEOIP_SERVICE
"ipgeolocation"
GEOIP_SERVICE_KEY
"aa67880cc84144fc8d04e9042050cbdc"
FIRST_DAY_OF_WEEK
"0"
DATE_FORMAT
"Y-m-d"
Key Value
APP_NAME
"bestarabicmassage.com"
APP_ENV
"local"
APP_KEY
"base64:Q6znvJuY392nETxggfOAyAMNBQAWEekSpCqMsMOCYto="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://bestarabicmassage.com/"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"bestarabicmassag_ad"
DB_USERNAME
"bestarabicmassag_sow"
DB_PASSWORD
"soon_sow2023"
DB_TABLE_PREFIX
"smartend_"
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
""
MAIL_PASSWORD
""
MAIL_ENCRYPTION
""
MAIL_FROM_ADDRESS
"admin@bestarabicmassage.com"
MAIL_FROM_NAME
"bestarabicmassage.com"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
""
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
NOCAPTCHA_STATUS
"0"
NOCAPTCHA_SECRET
""
NOCAPTCHA_SITEKEY
""
BACKEND_PATH
"admin"
BACKEND_PAGINATION
"30"
FRONTEND_PAGINATION
"20"
FRONTEND_TOPICS_ORDER
"asc"
DEFAULT_LANGUAGE
"en"
NO_REPLAY_EMAIL
"noreplay@site.com"
FACEBOOK_STATUS
"0"
FACEBOOK_ID
""
FACEBOOK_SECRET
""
TWITTER_STATUS
"0"
TWITTER_ID
""
TWITTER_SECRET
""
GOOGLE_STATUS
"0"
GOOGLE_ID
""
GOOGLE_SECRET
""
LINKEDIN_STATUS
"0"
LINKEDIN_ID
""
LINKEDIN_SECRET
""
GITHUB_STATUS
"0"
GITHUB_ID
""
GITHUB_SECRET
""
BITBUCKET_STATUS
"0"
BITBUCKET_ID
""
BITBUCKET_SECRET
""
TIMEZONE
"Asia/Dubai"
GOOGLE_MAPS_KEY
""
GEOIP_STATUS
"1"
GEOIP_SERVICE
"ipgeolocation"
GEOIP_SERVICE_KEY
"aa67880cc84144fc8d04e9042050cbdc"
FIRST_DAY_OF_WEEK
"0"
DATE_FORMAT
"Y-m-d"
0. Whoops\Handler\PrettyPageHandler