ErrorException (E_DEPRECATED)
Opis\Closure\SerializableClosure implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) ErrorException thrown with message "Opis\Closure\SerializableClosure implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary)" Stacktrace: #15 ErrorException in /home2/resumeca/carbazar.pk/vendor/opis/closure/src/SerializableClosure.php:18 #14 Illuminate\Foundation\Bootstrap\HandleExceptions:handleError in /home2/resumeca/carbazar.pk/vendor/opis/closure/src/SerializableClosure.php:18 #13 include in /home2/resumeca/carbazar.pk/vendor/composer/ClassLoader.php:444 #12 Composer\Autoload\includeFile in /home2/resumeca/carbazar.pk/vendor/composer/ClassLoader.php:322 #11 Composer\Autoload\ClassLoader:loadClass in [internal]:0 #10 class_exists in /home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:45 #9 Illuminate\Encryption\EncryptionServiceProvider:registerOpisSecurityKey in /home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:19 #8 Illuminate\Encryption\EncryptionServiceProvider:register in /home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:672 #7 Illuminate\Foundation\Application:register in /home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php:75 #6 Illuminate\Foundation\ProviderRepository:load in /home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:649 #5 Illuminate\Foundation\Application:registerConfiguredProviders in /home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php:17 #4 Illuminate\Foundation\Bootstrap\RegisterProviders:bootstrap in /home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:237 #3 Illuminate\Foundation\Application:bootstrapWith in /home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:152 #2 Illuminate\Foundation\Http\Kernel:bootstrap in /home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:136 #1 Illuminate\Foundation\Http\Kernel:sendRequestThroughRouter in /home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:110 #0 Illuminate\Foundation\Http\Kernel:handle in /home2/resumeca/carbazar.pk/public/index.php:52
15
ErrorException
/vendor/opis/closure/src/SerializableClosure.php18
14
Illuminate\Foundation\Bootstrap\HandleExceptions handleError
/vendor/opis/closure/src/SerializableClosure.php18
13
include
/vendor/composer/ClassLoader.php444
12
Composer\Autoload\includeFile
/vendor/composer/ClassLoader.php322
11
Composer\Autoload\ClassLoader loadClass
[internal]0
10
class_exists
/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php45
9
Illuminate\Encryption\EncryptionServiceProvider registerOpisSecurityKey
/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php19
8
Illuminate\Encryption\EncryptionServiceProvider register
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php672
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.php649
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
/public/index.php52
/home2/resumeca/carbazar.pk/vendor/opis/closure/src/SerializableClosure.php
<?php
/* ===========================================================================
 * Copyright (c) 2018-2021 Zindex Software
 *
 * Licensed under the MIT License
 * =========================================================================== */
 
namespace Opis\Closure;
 
use Closure;
use Serializable;
use SplObjectStorage;
use ReflectionObject;
 
/**
 * Provides a wrapper for serialization of closures
 */
class SerializableClosure implements Serializable
{
    /**
     * @var Closure Wrapped closure
     *
     * @see \Opis\Closure\SerializableClosure::getClosure()
     */
    protected $closure;
 
    /**
     * @var ReflectionClosure A reflection instance for closure
     *
     * @see \Opis\Closure\SerializableClosure::getReflector()
     */
    protected $reflector;
 
    /**
     * @var mixed Used at deserialization to hold variables
     *
     * @see \Opis\Closure\SerializableClosure::unserialize()
     * @see \Opis\Closure\SerializableClosure::getReflector()
     */
    protected $code;
Arguments
  1. "Opis\Closure\SerializableClosure implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary)"
    
/home2/resumeca/carbazar.pk/vendor/opis/closure/src/SerializableClosure.php
<?php
/* ===========================================================================
 * Copyright (c) 2018-2021 Zindex Software
 *
 * Licensed under the MIT License
 * =========================================================================== */
 
namespace Opis\Closure;
 
use Closure;
use Serializable;
use SplObjectStorage;
use ReflectionObject;
 
/**
 * Provides a wrapper for serialization of closures
 */
class SerializableClosure implements Serializable
{
    /**
     * @var Closure Wrapped closure
     *
     * @see \Opis\Closure\SerializableClosure::getClosure()
     */
    protected $closure;
 
    /**
     * @var ReflectionClosure A reflection instance for closure
     *
     * @see \Opis\Closure\SerializableClosure::getReflector()
     */
    protected $reflector;
 
    /**
     * @var mixed Used at deserialization to hold variables
     *
     * @see \Opis\Closure\SerializableClosure::unserialize()
     * @see \Opis\Closure\SerializableClosure::getReflector()
     */
    protected $code;
/home2/resumeca/carbazar.pk/vendor/composer/ClassLoader.php
            }
        }
 
        // PSR-0 include paths.
        if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
            return $file;
        }
 
        return false;
    }
}
 
/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 */
function includeFile($file)
{
    include $file;
}
 
Arguments
  1. "/home2/resumeca/carbazar.pk/vendor/opis/closure/src/SerializableClosure.php"
    
/home2/resumeca/carbazar.pk/vendor/composer/ClassLoader.php
    }
 
    /**
     * Unregisters this instance as an autoloader.
     */
    public function unregister()
    {
        spl_autoload_unregister(array($this, 'loadClass'));
    }
 
    /**
     * Loads the given class or interface.
     *
     * @param  string    $class The name of the class
     * @return bool|null True if loaded, null otherwise
     */
    public function loadClass($class)
    {
        if ($file = $this->findFile($class)) {
            includeFile($file);
 
            return true;
        }
    }
 
    /**
     * 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];
        }
        if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
            return false;
[internal]
/home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php
     */
    protected function registerEncrypter()
    {
        $this->app->singleton('encrypter', function ($app) {
            $config = $app->make('config')->get('app');
 
            return new Encrypter($this->parseKey($config), $config['cipher']);
        });
    }
 
    /**
     * Configure Opis Closure signing for security.
     *
     * @return void
     */
    protected function registerOpisSecurityKey()
    {
        $config = $this->app->make('config')->get('app');
 
        if (! class_exists(SerializableClosure::class) || empty($config['key'])) {
            return;
        }
 
        SerializableClosure::setSecretKey($this->parseKey($config));
    }
 
    /**
     * Parse the encryption key.
     *
     * @param  array  $config
     * @return string
     */
    protected function parseKey(array $config)
    {
        if (Str::startsWith($key = $this->key($config), $prefix = 'base64:')) {
            $key = base64_decode(Str::after($key, $prefix));
        }
 
        return $key;
    }
/home2/resumeca/carbazar.pk/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php
<?php
 
namespace Illuminate\Encryption;
 
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Str;
use Opis\Closure\SerializableClosure;
 
class EncryptionServiceProvider extends ServiceProvider
{
    /**
     * Register the service provider.
     *
     * @return void
     */
    public function register()
    {
        $this->registerEncrypter();
        $this->registerOpisSecurityKey();
    }
 
    /**
     * Register the encrypter.
     *
     * @return void
     */
    protected function registerEncrypter()
    {
        $this->app->singleton('encrypter', function ($app) {
            $config = $app->make('config')->get('app');
 
            return new Encrypter($this->parseKey($config), $config['cipher']);
        });
    }
 
    /**
     * Configure Opis Closure signing for security.
     *
     * @return void
     */
/home2/resumeca/carbazar.pk/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);
 
        // If the application has already booted, we will call this boot method on
        // the provider class so it has an opportunity to do its boot logic and
/home2/resumeca/carbazar.pk/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);
/home2/resumeca/carbazar.pk/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->make('config')->get('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);
/home2/resumeca/carbazar.pk/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();
    }
}
 
/home2/resumeca/carbazar.pk/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.
/home2/resumeca/carbazar.pk/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.
     *
/home2/resumeca/carbazar.pk/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());
        }
    }
 
    /**
/home2/resumeca/carbazar.pk/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)
/home2/resumeca/carbazar.pk/public/index.php
 
require __DIR__.'/../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__.'/../bootstrap/app.php';
 
$kernel = $app->make(Kernel::class);
 
$response = $kernel->handle(
    $request = Request::capture()
)->send();
 
$kernel->terminate($request, $response);
 

Environment & details:

empty
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_HOST
"carbazar.pk"
HTTP_USER_AGENT
"claudebot"
HTTP_X_HTTPS
"1"
DOCUMENT_ROOT
"/home2/resumeca/carbazar.pk/public"
REMOTE_ADDR
"34.238.138.162"
REMOTE_PORT
"46512"
SERVER_ADDR
"64.31.43.234"
SERVER_NAME
"carbazar.pk"
SERVER_ADMIN
"webmaster@carbazar.resumecampus.com"
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
"/home2/resumeca/carbazar.pk/public/index.php"
QUERY_STRING
""
SCRIPT_URI
"https://carbazar.pk/"
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
1711623282.6107
REQUEST_TIME
1711623282
APP_NAME
"CarBazar"
APP_ENV
"local"
APP_KEY
"base64:xLz5OGuME0+BzVjY2bI7ltOlpBlmlO27Jc2C3Rde00Y="
APP_DEBUG
"true"
APP_URL
"http://carbazar.pk"
LOG_CHANNEL
"stack"
LOG_LEVEL
"debug"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"resumeca_carbazar_beta"
DB_USERNAME
"resumeca_carbazarU_beta"
DB_PASSWORD
"carbazarU123$"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
FILESYSTEM_DRIVER
"local"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
MEMCACHED_HOST
"127.0.0.1"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"s20.hosterpk.com"
MAIL_PORT
"587"
MAIL_USERNAME
"info@carbazar.com.pk"
MAIL_PASSWORD
"woo50@iqd2B%"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_ADDRESS
"info@carbazar.com.pk"
MAIL_FROM_NAME
"CarBazar"
CONTACT_EMAIL
"info@carbazar.pk"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
AWS_USE_PATH_STYLE_ENDPOINT
"false"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
STORE_ID
"13396"
HASH_KEY
"G64035ZR9WP0Z8ER"
POST_BACK_URL1
"https://carbazar.com.pk/ad-feature/redirect/complete-payment"
POST_BACK_URL2
"https://carbazar.com.pk/thank-you"
TRANSACTION_POST_URL1
"https://easypaystg.easypaisa.com.pk/easypay/Index.jsf"
TRANSACTION_POST_URL2
"https://easypaystg.easypaisa.com.pk/easypay/Confirm.jsf"
JAZZCASH_MERCHANT_ID
"MC27824"
JAZZCASH_PASSWORD
"cv39bgzc1a"
JAZZCASH_INTEGERITY_SALT
"7e03g59xyu"
JAZZCASH_RETURN_URL
"https://carbazar.com.pk/thank-you"
JAZZCASH_CURRENCY_CODE
"PKR"
JAZZCASH_LANGUAGE
"EN"
JAZZCASH_API_VERSION_2
"1.1"
JAZZCASH_HTTP_POST_URL
"https://sandbox.jazzcash.com.pk/CustomerPortal/transactionmanagement/merchantform/"
RECORDS_PER_PAGE
"20"
UPLOADS_CLASSIFIEDS
"https://admin.carbazar.com.pk/uploads/classified"
UPLOADS_BUSINESS
"https://admin.carbazar.com.pk/uploads/business"
UPLOADS
"https://admin.carbazar.com.pk/uploads"
NOCAPTCHA_SITEKEY
"6LcK8QAjAAAAAPxBJijbzDhtvNZqRHZzvBj7ehkl"
NOCAPTCHA_SECRET
"6LcK8QAjAAAAAFpcaBt3jXRALBu6W-Ywhc41HUwp"
Key Value
APP_NAME
"CarBazar"
APP_ENV
"local"
APP_KEY
"base64:xLz5OGuME0+BzVjY2bI7ltOlpBlmlO27Jc2C3Rde00Y="
APP_DEBUG
"true"
APP_URL
"http://carbazar.pk"
LOG_CHANNEL
"stack"
LOG_LEVEL
"debug"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"resumeca_carbazar_beta"
DB_USERNAME
"resumeca_carbazarU_beta"
DB_PASSWORD
"carbazarU123$"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
FILESYSTEM_DRIVER
"local"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
MEMCACHED_HOST
"127.0.0.1"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"s20.hosterpk.com"
MAIL_PORT
"587"
MAIL_USERNAME
"info@carbazar.com.pk"
MAIL_PASSWORD
"woo50@iqd2B%"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_ADDRESS
"info@carbazar.com.pk"
MAIL_FROM_NAME
"CarBazar"
CONTACT_EMAIL
"info@carbazar.pk"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
AWS_USE_PATH_STYLE_ENDPOINT
"false"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
STORE_ID
"13396"
HASH_KEY
"G64035ZR9WP0Z8ER"
POST_BACK_URL1
"https://carbazar.com.pk/ad-feature/redirect/complete-payment"
POST_BACK_URL2
"https://carbazar.com.pk/thank-you"
TRANSACTION_POST_URL1
"https://easypaystg.easypaisa.com.pk/easypay/Index.jsf"
TRANSACTION_POST_URL2
"https://easypaystg.easypaisa.com.pk/easypay/Confirm.jsf"
JAZZCASH_MERCHANT_ID
"MC27824"
JAZZCASH_PASSWORD
"cv39bgzc1a"
JAZZCASH_INTEGERITY_SALT
"7e03g59xyu"
JAZZCASH_RETURN_URL
"https://carbazar.com.pk/thank-you"
JAZZCASH_CURRENCY_CODE
"PKR"
JAZZCASH_LANGUAGE
"EN"
JAZZCASH_API_VERSION_2
"1.1"
JAZZCASH_HTTP_POST_URL
"https://sandbox.jazzcash.com.pk/CustomerPortal/transactionmanagement/merchantform/"
RECORDS_PER_PAGE
"20"
UPLOADS_CLASSIFIEDS
"https://admin.carbazar.com.pk/uploads/classified"
UPLOADS_BUSINESS
"https://admin.carbazar.com.pk/uploads/business"
UPLOADS
"https://admin.carbazar.com.pk/uploads"
NOCAPTCHA_SITEKEY
"6LcK8QAjAAAAAPxBJijbzDhtvNZqRHZzvBj7ehkl"
NOCAPTCHA_SECRET
"6LcK8QAjAAAAAFpcaBt3jXRALBu6W-Ywhc41HUwp"
0. Whoops\Handler\PrettyPageHandler