img description

Solar Savings Guaranteed by Solarmarkit

What is Solarmarkit’s Solar Savings Guarantee feature? 

Only our Solar Provider customers have access to our Solar Savings Guarantee tool when they make an offer to a homeowner.

You'll determine the homeowner's potential savings once you've selected the solar system for them. It is the amount you estimate they will save with your solar installation over the course of a year. When we say "save," we mean the quarterly credit from the homeowner's electricity provider that they will receive as a result of installing solar. After a year, if the homeowner still hasn't saved the amount you predicted, they'll be entitled to the difference.

They will post quarterly information via their Solarmarkit dashboard for monitoring once their solar system is operational. Solarmarkit calculates their actual solar savings based on their monthly electricity bill.

TIP TO EARN: Your chances of getting the solar job greatly increase if you submit an offer and use the Solar Savings Guarantee tool.


Example A: Rachel (Homeowner) does not save expected amount ABC Solar (SolarPro) guaranteed.

ABC Solar submits an offer guaranteeing Rachel will save $800-$950 annually.
After the one year period, Rachel saves $700 annually (below the savings range). 
Rachel is now eligible for $100 reimbursement from ABC Solar.
This reimbursement is paid to Rachel in Australian Dollars via SolarPay.

Example B: Tim (Homeowner) saves expected amount ABC Solar (SolarPro) guaranteed.

ABC Solar submits an offer guaranteeing Tim will save $800~$950 annually.
After the one year period, Tim saves $900 annually (within the savings range).
ABC Solar has provided a correct estimation of solar savings.


Why is a savings guarantee crucial when purchasing a solar system?

You can be more confident about the solar system's return on investment because a savings guarantee feature eliminates the element of speculation.


How is the SolarPro able to guarantee savings?

They can utilize software to project your savings over time based on your roof size, post code, power bill usage, and energy provider. After your new system is installed, they will be able to forecast how much solar energy you will produce and export. With the Solar Savings Guarantee feature from Solarmarkit, you can rely on us to assist you in achieving your savings goal.


What happens if I don't save the whole amount promised?

Any discrepancy between your estimated and actual savings will be applied to your SolarWallet at the end of the 12-month period (within 30 business days) by your assigned SolarPro.

Example A: Rachel (Homeowner) does not save expected amount ABC Solar (SolarPro) guaranteed

ABC Solar submits an offer guaranteeing Rachel will save $800-$950 annually.
After the one year period, Rachel saves $700 annually (below the savings range). 
Rachel is now eligible for $100 reimbursement from ABC Solar.
This reimbursement is paid to Rachel in Australian Dollars via SolarPay.


Can I save even more than the amount I've been promised?

You might occasionally save more than the projected savings. We appreciate it when homeowners make savings, and if you maximise your solar power, you might even save more than you had anticipated. Reduce your nighttime energy use by using our energy-saving advice.


How will I be able to calculate how much money I've saved since going solar?

On your Solarmarkit dashboard under Savings, to calculate your actual savings, upload a PDF of your electricity bill. Solarmarkit will then determine your actual electricity bill savings and update your dashboard.  Along with a ton of other helpful information, this will contain your savings for the quarter and your overall savings to date.

Whoops! There was an error.
ErrorException (E_WARNING)
file_put_contents(/home/seoking144/solarmarkitcom/storage/framework/sessions/NIvC0mDGZczn8gTmlKXqoyi4O7yhT2XvmtbIHVnm): failed to open stream: Disk quota exceeded ErrorException thrown with message "file_put_contents(/home/seoking144/solarmarkitcom/storage/framework/sessions/NIvC0mDGZczn8gTmlKXqoyi4O7yhT2XvmtbIHVnm): failed to open stream: Disk quota exceeded" Stacktrace: #8 ErrorException in /home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #7 file_put_contents in /home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122 #6 Illuminate\Filesystem\Filesystem:put in /home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php:83 #5 Illuminate\Session\FileSessionHandler:write in /home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Session/Store.php:129 #4 Illuminate\Session\Store:save in /home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:87 #3 Illuminate\Session\Middleware\StartSession:terminate in /home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:218 #2 Illuminate\Foundation\Http\Kernel:terminateMiddleware in /home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:189 #1 Illuminate\Foundation\Http\Kernel:terminate in /home/seoking144/solarmarkitcom/public/index.php:60 #0 require_once in /home/seoking144/solarmarkitcom/server.php:21
8
ErrorException
/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php122
7
file_put_contents
/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php122
6
Illuminate\Filesystem\Filesystem put
/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php83
5
Illuminate\Session\FileSessionHandler write
/vendor/laravel/framework/src/Illuminate/Session/Store.php129
4
Illuminate\Session\Store save
/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php87
3
Illuminate\Session\Middleware\StartSession terminate
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php218
2
Illuminate\Foundation\Http\Kernel terminateMiddleware
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php189
1
Illuminate\Foundation\Http\Kernel terminate
/public/index.php60
0
require_once
/server.php21
/home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
     *
     * @param  string  $path
     * @return string
     */
    public function hash($path)
    {
        return md5_file($path);
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Write the contents of a file, replacing it atomically if it already exists.
     *
     * @param  string  $path
     * @param  string  $content
     * @return void
     */
    public function replace($path, $content)
    {
        // If the path already exists and is a symlink, get the real path...
        clearstatcache(true, $path);
 
        $path = realpath($path) ?: $path;
 
        $tempPath = tempnam(dirname($path), basename($path));
 
        // Fix permissions of tempPath because `tempnam()` creates it with permissions set to 0600...
        chmod($tempPath, 0777 - umask());
Arguments
  1. "file_put_contents(/home/seoking144/solarmarkitcom/storage/framework/sessions/NIvC0mDGZczn8gTmlKXqoyi4O7yhT2XvmtbIHVnm): failed to open stream: Disk quota exceeded"
    
/home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
     *
     * @param  string  $path
     * @return string
     */
    public function hash($path)
    {
        return md5_file($path);
    }
 
    /**
     * Write the contents of a file.
     *
     * @param  string  $path
     * @param  string  $contents
     * @param  bool  $lock
     * @return int
     */
    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
    }
 
    /**
     * Write the contents of a file, replacing it atomically if it already exists.
     *
     * @param  string  $path
     * @param  string  $content
     * @return void
     */
    public function replace($path, $content)
    {
        // If the path already exists and is a symlink, get the real path...
        clearstatcache(true, $path);
 
        $path = realpath($path) ?: $path;
 
        $tempPath = tempnam(dirname($path), basename($path));
 
        // Fix permissions of tempPath because `tempnam()` creates it with permissions set to 0600...
        chmod($tempPath, 0777 - umask());
Arguments
  1. "/home/seoking144/solarmarkitcom/storage/framework/sessions/NIvC0mDGZczn8gTmlKXqoyi4O7yhT2XvmtbIHVnm"
    
  2. "a:3:{s:6:"_token";s:40:"uWsN0BPgozy4DtzpKb78dCTLFIIbQwKVi3LHeAr6";s:9:"_previous";a:1:{s:3:"url";s:42:"https://solarmarkit.com/page/solar-savings";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. 2
    
/home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php
    /**
     * {@inheritdoc}
     */
    public function read($sessionId)
    {
        if ($this->files->isFile($path = $this->path.'/'.$sessionId)) {
            if ($this->files->lastModified($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) {
                return $this->files->sharedGet($path);
            }
        }
 
        return '';
    }
 
    /**
     * {@inheritdoc}
     */
    public function write($sessionId, $data)
    {
        $this->files->put($this->path.'/'.$sessionId, $data, true);
 
        return true;
    }
 
    /**
     * {@inheritdoc}
     */
    public function destroy($sessionId)
    {
        $this->files->delete($this->path.'/'.$sessionId);
 
        return true;
    }
 
    /**
     * {@inheritdoc}
     */
    public function gc($lifetime)
    {
        $files = Finder::create()
Arguments
  1. "/home/seoking144/solarmarkitcom/storage/framework/sessions/NIvC0mDGZczn8gTmlKXqoyi4O7yhT2XvmtbIHVnm"
    
  2. "a:3:{s:6:"_token";s:40:"uWsN0BPgozy4DtzpKb78dCTLFIIbQwKVi3LHeAr6";s:9:"_previous";a:1:{s:3:"url";s:42:"https://solarmarkit.com/page/solar-savings";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
  3. true
    
/home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Session/Store.php
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForUnserialize($data)
    {
        return $data;
    }
 
    /**
     * Save the session data to storage.
     *
     * @return bool
     */
    public function save()
    {
        $this->ageFlashData();
 
        $this->handler->write($this->getId(), $this->prepareForStorage(
            serialize($this->attributes)
        ));
 
        $this->started = false;
    }
 
    /**
     * Prepare the serialized session data for storage.
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForStorage($data)
    {
        return $data;
    }
 
    /**
     * Age the flash data for the session.
     *
     * @return void
Arguments
  1. "NIvC0mDGZczn8gTmlKXqoyi4O7yhT2XvmtbIHVnm"
    
  2. "a:3:{s:6:"_token";s:40:"uWsN0BPgozy4DtzpKb78dCTLFIIbQwKVi3LHeAr6";s:9:"_previous";a:1:{s:3:"url";s:42:"https://solarmarkit.com/page/solar-savings";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
    
/home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
        if ($this->sessionConfigured()) {
            $this->storeCurrentUrl($request, $session);
 
            $this->addCookieToResponse($response, $session);
        }
 
        return $response;
    }
 
    /**
     * Perform any final actions for the request lifecycle.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Symfony\Component\HttpFoundation\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        if ($this->sessionHandled && $this->sessionConfigured() && ! $this->usingCookieSessions()) {
            $this->manager->driver()->save();
        }
    }
 
    /**
     * Start the session for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Contracts\Session\Session
     */
    protected function startSession(Request $request)
    {
        return tap($this->getSession($request), function ($session) use ($request) {
            $session->setRequestOnHandler($request);
 
            $session->start();
        });
    }
 
    /**
     * Get the session implementation from the manager.
/home/seoking144/solarmarkitcom/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     * @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\Http\Request {#46
      #json: null
      #convertedFiles: null
      #userResolver: Closure($guard = null) {#1452 …4}
      #routeResolver: Closure() {#1454 …4}
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#48}
      +request: Symfony\Component\HttpFoundation\ParameterBag {#54}
      +query: Symfony\Component\HttpFoundation\ParameterBag {#54}
      +server: Symfony\Component\HttpFoundation\ServerBag {#50}
      +files: Symfony\Component\HttpFoundation\FileBag {#51}
      +cookies: Symfony\Component\HttpFoundation\ParameterBag {#49}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#52}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/page/solar-savings"
      #requestUri: "/page/solar-savings"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Illuminate\Session\Store {#1520}
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Illuminate\Http\Response {#1553}
    
/home/seoking144/solarmarkitcom/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 {#46
      #json: null
      #convertedFiles: null
      #userResolver: Closure($guard = null) {#1452 …4}
      #routeResolver: Closure() {#1454 …4}
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#48}
      +request: Symfony\Component\HttpFoundation\ParameterBag {#54}
      +query: Symfony\Component\HttpFoundation\ParameterBag {#54}
      +server: Symfony\Component\HttpFoundation\ServerBag {#50}
      +files: Symfony\Component\HttpFoundation\FileBag {#51}
      +cookies: Symfony\Component\HttpFoundation\ParameterBag {#49}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#52}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/page/solar-savings"
      #requestUri: "/page/solar-savings"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Illuminate\Session\Store {#1520}
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Illuminate\Http\Response {#1553}
    
/home/seoking144/solarmarkitcom/public/index.php
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
 
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 
$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);
 
$response->send();
 
$kernel->terminate($request, $response);
 
Arguments
  1. Illuminate\Http\Request {#46
      #json: null
      #convertedFiles: null
      #userResolver: Closure($guard = null) {#1452 …4}
      #routeResolver: Closure() {#1454 …4}
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#48}
      +request: Symfony\Component\HttpFoundation\ParameterBag {#54}
      +query: Symfony\Component\HttpFoundation\ParameterBag {#54}
      +server: Symfony\Component\HttpFoundation\ServerBag {#50}
      +files: Symfony\Component\HttpFoundation\FileBag {#51}
      +cookies: Symfony\Component\HttpFoundation\ParameterBag {#49}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#52}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/page/solar-savings"
      #requestUri: "/page/solar-savings"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Illuminate\Session\Store {#1520}
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Illuminate\Http\Response {#1553}
    
/home/seoking144/solarmarkitcom/server.php
 
/**
 * Laravel - A PHP Framework For Web Artisans
 *
 * @package  Laravel
 * @author   Taylor Otwell <[email protected]>
 */
 
$uri = urldecode(
    parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
 
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
    return false;
}
 
require_once __DIR__.'/public/index.php';
 
Arguments
  1. "/home/seoking144/solarmarkitcom/public/index.php"
    

Environment & details:

empty
empty
empty
Key Value
handl_landing_page
"https://sprylab.com/en/php-developer-with-wordpress-and-woocommerce-experience-m-w-d/"
handl_ip
"108.128.182.166, 64.252.86.118"
user_agent
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36"
HandLtestDomainNameServer
"HandLtestDomainValueServer"
handl_url_base
"https://sprylab.com/en/php-developer-with-wordpress-and-woocommerce-experience-m-w-d/"
organic_source_str
"Internal"
organic_source
"https://sprylab.com/de/php-developer-with-wordpress-and-woocommerce-experience-m-w-d/"
handl_url
"https://sprylab.com/en/php-developer-with-wordpress-and-woocommerce-experience-m-w-d/"
handl_original_ref
"https://sprylab.com/de/php-developer-with-wordpress-and-woocommerce-experience-m-w-d/"
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br"
HTTP_COOKIE
"handl_landing_page=https%3A%2F%2Fsprylab.com%2Fen%2Fphp-developer-with-wordpress-and-woocommerce-experience-m-w-d%2F; handl_ip=108.128.182.166%2C%2064.252.86.118; user_agent=Mozilla%2F5.0%20%28Macintosh%3B%20Intel%20Mac%20OS%20X%2010_15_7%29%20AppleWebKit%2F537.36%20%28KHTML%2C%20like%20Gecko%29%20Chrome%2F111.0.0.0%20Safari%2F537.36; HandLtestDomainNameServer=HandLtestDomainValueServer; handl_url_base=https%3A%2F%2Fsprylab.com%2Fen%2Fphp-developer-with-wordpress-and-woocommerce-experience-m-w-d%2F; organic_source_str=Internal; organic_source=https%3A%2F%2Fsprylab.com%2Fde%2Fphp-developer-with-wordpress-and-woocommerce-experience-m-w-d%2F; handl_url=https%3A%2F%2Fsprylab.com%2Fen%2Fphp-developer-with-wordpress-and-woocommerce-experience-m-w-d%2F; handl_original_ref=https%3A%2F%2Fsprylab.com%2Fde%2Fphp-developer-with-wordpress-and-woocommerce-experience-m-w-d%2F"
HTTP_HOST
"solarmarkit.com"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])"
HTTP_X_FORWARDED_FOR
"18.119.112.154,172.70.179.11"
HTTP_CDN_LOOP
"cloudflare"
HTTP_CF_IPCOUNTRY
"US"
HTTP_CF_RAY
"8a9b058ff901630e-ORD"
HTTP_CF_VISITOR
"{"scheme":"https"}"
HTTP_CF_CONNECTING_IP
"18.119.112.154"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_HTTPS
"on"
DOCUMENT_ROOT
"/home/seoking144/solarmarkitcom"
REMOTE_ADDR
"18.119.112.154"
REMOTE_PORT
"49732"
SERVER_ADDR
"162.0.229.9"
SERVER_NAME
"solarmarkit.com"
SERVER_ADMIN
"[email protected]"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/page/solar-savings"
REDIRECT_URL
"/page/solar-savings"
REDIRECT_REQUEST_METHOD
"GET"
PROXY_REMOTE_ADDR
"162.0.229.9"
HTTPS
"on"
REDIRECT_STATUS
"200"
SCRIPT_FILENAME
"/home/seoking144/solarmarkitcom/server.php"
QUERY_STRING
""
SCRIPT_URI
"https://solarmarkit.com/page/solar-savings"
SCRIPT_URL
"/page/solar-savings"
SCRIPT_NAME
"/server.php"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_METHOD
"GET"
X-LSCACHE
"on"
PHP_SELF
"/server.php"
REQUEST_TIME_FLOAT
1722066450.2042
REQUEST_TIME
1722066450
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:3NEj5cpMljAZdq7PxkhQStRVH3GTAmETx+jBD7c9b7Y="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"seoking144_solarmarkitcombd"
DB_USERNAME
"seoking144_solarmarkit"
DB_PASSWORD
"C@s2-ND{8#74"
FILESYSTEM_DRIVER
"public"
FILESYSTEM_CLOUD
"google"
GOOGLE_DRIVE_CLIENT_ID
"902597661676-0csn83cp68tpvje6a6vdbdagp6l9bebd.apps.googleusercontent.com"
GOOGLE_DRIVE_CLIENT_SECRET
"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"
GOOGLE_DRIVE_REFRESH_TOKEN
"1//04-hvICYuMTR2CgYIARAAGAQSNwF-L9IrN1IxZi-c5FmTwGZ1pdpPuRPFK8Rf1U-N11sMAPj8IJNavaTYEr8M-_fxD4utW4ullqM"
GOOGLE_DRIVE_FOLDER_ID
"1NF6MXrJMLJJLFbxWSt3w8nlIl_XkBTmb"
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"
GOOGLE_MAPS_API_KEY
"AIzaSyDhhN8PqF4nhWa7ZOYEafK3MeSm_Xs6UT4"
MAIL_DRIVER
"sendmail"
MAIL_HOST
"smtp.zoho.com"
MAIL_PORT
"465"
MAIL_USERNAME
"[email protected]"
MAIL_PASSWORD
"123@ccounts123"
MAIL_ENCRYPTION
"ssl"
MIX_PUSHER_APP_KEY
"${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER
"${PUSHER_APP_CLUSTER}"
PUSHER_APP_ID
"1276503"
PUSHER_APP_KEY
"59251744d2c0a729dcfb"
PUSHER_APP_SECRET
"330a265620e71f4e25ce"
PUSHER_APP_CLUSTER
"mt1"
STRIPE_KEY
"pk_test_51Jni0UHtV0oRuQX69V6MnhdfIv60GZxRFnuaWryUQ3lj4gzZpPADhlXRFwhQg9U6jje7786ZkT6p41xCxISPsKcy00PzTO6Egy"
STRIPE_SECRET
"sk_test_51Jni0UHtV0oRuQX6DyKxjwM5dUTwaxNddsK0h9FdvhVxWiirgARc4WTC3NQSVUIcl6x1CxnLrLwfSHkEE1HKarLO00yb5XLYOh"
service_account_credentials_json
"app_path('laravel-google-analytics/service-account-credentials.json')"
PROPERTY_ID
"413473196"
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:3NEj5cpMljAZdq7PxkhQStRVH3GTAmETx+jBD7c9b7Y="
APP_DEBUG
"true"
APP_URL
"http://localhost"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"seoking144_solarmarkitcombd"
DB_USERNAME
"seoking144_solarmarkit"
DB_PASSWORD
"C@s2-ND{8#74"
FILESYSTEM_DRIVER
"public"
FILESYSTEM_CLOUD
"google"
GOOGLE_DRIVE_CLIENT_ID
"902597661676-0csn83cp68tpvje6a6vdbdagp6l9bebd.apps.googleusercontent.com"
GOOGLE_DRIVE_CLIENT_SECRET
"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"
GOOGLE_DRIVE_REFRESH_TOKEN
"1//04-hvICYuMTR2CgYIARAAGAQSNwF-L9IrN1IxZi-c5FmTwGZ1pdpPuRPFK8Rf1U-N11sMAPj8IJNavaTYEr8M-_fxD4utW4ullqM"
GOOGLE_DRIVE_FOLDER_ID
"1NF6MXrJMLJJLFbxWSt3w8nlIl_XkBTmb"
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"
GOOGLE_MAPS_API_KEY
"AIzaSyDhhN8PqF4nhWa7ZOYEafK3MeSm_Xs6UT4"
MAIL_DRIVER
"sendmail"
MAIL_HOST
"smtp.zoho.com"
MAIL_PORT
"465"
MAIL_USERNAME
"[email protected]"
MAIL_PASSWORD
"123@ccounts123"
MAIL_ENCRYPTION
"ssl"
MIX_PUSHER_APP_KEY
"${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER
"${PUSHER_APP_CLUSTER}"
PUSHER_APP_ID
"1276503"
PUSHER_APP_KEY
"59251744d2c0a729dcfb"
PUSHER_APP_SECRET
"330a265620e71f4e25ce"
PUSHER_APP_CLUSTER
"mt1"
STRIPE_KEY
"pk_test_51Jni0UHtV0oRuQX69V6MnhdfIv60GZxRFnuaWryUQ3lj4gzZpPADhlXRFwhQg9U6jje7786ZkT6p41xCxISPsKcy00PzTO6Egy"
STRIPE_SECRET
"sk_test_51Jni0UHtV0oRuQX6DyKxjwM5dUTwaxNddsK0h9FdvhVxWiirgARc4WTC3NQSVUIcl6x1CxnLrLwfSHkEE1HKarLO00yb5XLYOh"
service_account_credentials_json
"app_path('laravel-google-analytics/service-account-credentials.json')"
PROPERTY_ID
"413473196"
0. Whoops\Handler\PrettyPageHandler