main-screen

Reach certified solar professionals and companies on Solarmarkit

Get a rebate on your electricity bill

Once your solar installation is finished via Solarmarkit, we will give you a rebate on your first electricity bill. This rebate has been created by the Solarmarkit Company and does not involve government policies. You can use this to offset your electricity bill or for home improvements.

Go to rebate
solar-home-image

Referral system

After you complete an installation via Solarmarkit, you will be given a unique referral code. This code will be used by the referrer when they post a job. After the referrer completes their installation, you will receive a referral fee deposited into your SolarWallet.

Go to referral

Our Solutions

Solarmarkit provides value-for-money solutions for both homeowners and solar service professionals.

For Homeowners

Hire qualified solar professionals from the comforts of your own home. Choose from a wide array of solar professionals ready to help you with solar-related jobs.

For Solar Providers

Offer your services to homeowners in need of your expertise. Connect with homeowners.

Secured Payments

Transact safely with our secured payment system designed to guard your personal information.

Resolution and Support

Eliminate worries with our resolution and support team ready to assist you with any concern.

Solarmarkit Verifications

Connect with verified homeowners and solar professionals within the Solarmarkit network.

Solar Savings Guaranteed

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

They can utilize software to project your savings over time based on your roof size, post code, power bill usage, and energy provider.

Go to solar savings
main-screen

Join a curated experience packed with tools and benefits, dedicated to businesses

Whoops! There was an error.
ErrorException (E_WARNING)
file_put_contents(/home/seoking144/solarmarkitcom/storage/framework/sessions/iENRHCP7HJPhSiORUKdpIEKaBttr4ANl1JQXCsOH): failed to open stream: Disk quota exceeded ErrorException thrown with message "file_put_contents(/home/seoking144/solarmarkitcom/storage/framework/sessions/iENRHCP7HJPhSiORUKdpIEKaBttr4ANl1JQXCsOH): 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/iENRHCP7HJPhSiORUKdpIEKaBttr4ANl1JQXCsOH): 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/iENRHCP7HJPhSiORUKdpIEKaBttr4ANl1JQXCsOH"
    
  2. "a:3:{s:6:"_token";s:40:"lq59PMsjMO6kofOFQdwm8gJX1cFHP1kDjb42HM6A";s:9:"_previous";a:1:{s:3:"url";s:23:"https://solarmarkit.com";}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/iENRHCP7HJPhSiORUKdpIEKaBttr4ANl1JQXCsOH"
    
  2. "a:3:{s:6:"_token";s:40:"lq59PMsjMO6kofOFQdwm8gJX1cFHP1kDjb42HM6A";s:9:"_previous";a:1:{s:3:"url";s:23:"https://solarmarkit.com";}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. "iENRHCP7HJPhSiORUKdpIEKaBttr4ANl1JQXCsOH"
    
  2. "a:3:{s:6:"_token";s:40:"lq59PMsjMO6kofOFQdwm8gJX1cFHP1kDjb42HM6A";s:9:"_previous";a:1:{s:3:"url";s:23:"https://solarmarkit.com";}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: "/"
      #requestUri: "/"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Illuminate\Session\Store {#1498}
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Illuminate\Http\Response {#1530}
    
/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: "/"
      #requestUri: "/"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Illuminate\Session\Store {#1498}
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Illuminate\Http\Response {#1530}
    
/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: "/"
      #requestUri: "/"
      #baseUrl: ""
      #basePath: null
      #method: "GET"
      #format: null
      #session: Illuminate\Session\Store {#1498}
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      basePath: ""
      format: "html"
    }
    
  2. Illuminate\Http\Response {#1530}
    
/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
_visitor_id
"-O2nKisvStvO7a6-BsgS"
_auth_token
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ2aXNpdG9ySWQiOiItTzJuS2lzdlN0dk83YTYtQnNnUyIsImF1dGhlbnRpY2F0ZWQiOm51bGwsImF1dGhQcm92aWRlciI6bnVsbCwiZXhwIjoxNzI0NjYxNDc5LCJpYXQiOjE3MjIwNjk0Nzl9.grx83JuPzAU3A7K86sLRcypclZXlFa-AdFVQ1wIrb5A"
handl_ip
"18.119.132.35"
handl_landing_page
"https://seggy-touren.com/segway-schoental"
user_agent
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])"
handl_url
"https://seggy-touren.com/segway-schoental"
HandLtestDomainNameServer
"HandLtestDomainValueServer"
handl_url_base
"https://seggy-touren.com/segway-schoental"
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br"
HTTP_COOKIE
"_visitor_id=-O2nKisvStvO7a6-BsgS; _auth_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ2aXNpdG9ySWQiOiItTzJuS2lzdlN0dk83YTYtQnNnUyIsImF1dGhlbnRpY2F0ZWQiOm51bGwsImF1dGhQcm92aWRlciI6bnVsbCwiZXhwIjoxNzI0NjYxNDc5LCJpYXQiOjE3MjIwNjk0Nzl9.grx83JuPzAU3A7K86sLRcypclZXlFa-AdFVQ1wIrb5A; handl_ip=18.119.132.35; handl_landing_page=https%3A%2F%2Fseggy-touren.com%2Fsegway-schoental; user_agent=Mozilla%2F5.0%20AppleWebKit%2F537.36%20%28KHTML%2C%20like%20Gecko%3B%20compatible%3B%20ClaudeBot%2F1.0%3B%20%2Bclaudebot%40anthropic.com%29; handl_url=https%3A%2F%2Fseggy-touren.com%2Fsegway-schoental; HandLtestDomainNameServer=HandLtestDomainValueServer; handl_url_base=https%3A%2F%2Fseggy-touren.com%2Fsegway-schoental"
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.132.35,172.69.59.18"
HTTP_CDN_LOOP
"cloudflare"
HTTP_CF_IPCOUNTRY
"US"
HTTP_CF_RAY
"8a9b4fbfdd1010ae-ORD"
HTTP_CF_VISITOR
"{"scheme":"https"}"
HTTP_CF_CONNECTING_IP
"18.119.132.35"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_HTTPS
"on"
DOCUMENT_ROOT
"/home/seoking144/solarmarkitcom"
REMOTE_ADDR
"18.119.132.35"
REMOTE_PORT
"39448"
SERVER_ADDR
"162.0.229.9"
SERVER_NAME
"solarmarkit.com"
SERVER_ADMIN
"[email protected]"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/"
REDIRECT_URL
"/"
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/"
SCRIPT_URL
"/"
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
1722069488.8976
REQUEST_TIME
1722069488
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