Oops! You're lost...

The page you are looking for might have been moved, renamed, or might never existed.
Back Home
Whoops! There was an error.
ErrorException (E_NOTICE)
fwrite(): write of 1978 bytes failed with errno=28 No space left on device ErrorException thrown with message "fwrite(): write of 1978 bytes failed with errno=28 No space left on device" Stacktrace: #11 ErrorException in D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php:131 #10 fwrite in D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php:131 #9 Monolog\Handler\StreamHandler:streamWrite in D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php:117 #8 Monolog\Handler\StreamHandler:write in D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Handler\AbstractProcessingHandler.php:39 #7 Monolog\Handler\AbstractProcessingHandler:handle in D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Logger.php:344 #6 Monolog\Logger:addRecord in D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Logger.php:707 #5 Monolog\Logger:error in D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\laravel\framework\src\Illuminate\Log\Writer.php:203 #4 Illuminate\Log\Writer:writeLog in D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\laravel\framework\src\Illuminate\Log\Writer.php:114 #3 Illuminate\Log\Writer:error in D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\laravel\framework\src\Illuminate\Foundation\Exceptions\Handler.php:113 #2 Illuminate\Foundation\Exceptions\Handler:report in D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\app\Exceptions\Handler.php:35 #1 App\Exceptions\Handler:report in D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php:81 #0 Illuminate\Foundation\Bootstrap\HandleExceptions:handleException in [internal]:0
11
ErrorException
…\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php131
10
fwrite
…\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php131
9
Monolog\Handler\StreamHandler streamWrite
…\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php117
8
Monolog\Handler\StreamHandler write
…\vendor\monolog\monolog\src\Monolog\Handler\AbstractProcessingHandler.php39
7
Monolog\Handler\AbstractProcessingHandler handle
…\vendor\monolog\monolog\src\Monolog\Logger.php344
6
Monolog\Logger addRecord
…\vendor\monolog\monolog\src\Monolog\Logger.php707
5
Monolog\Logger error
…\vendor\laravel\framework\src\Illuminate\Log\Writer.php203
4
Illuminate\Log\Writer writeLog
…\vendor\laravel\framework\src\Illuminate\Log\Writer.php114
3
Illuminate\Log\Writer error
…\vendor\laravel\framework\src\Illuminate\Foundation\Exceptions\Handler.php113
2
Illuminate\Foundation\Exceptions\Handler report
…\app\Exceptions\Handler.php35
1
App\Exceptions\Handler report
…\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php81
0
Illuminate\Foundation\Bootstrap\HandleExceptions handleException
[internal]0
D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php
        if ($this->useLocking) {
            // ignoring errors here, there's not much we can do about them
            flock($this->stream, LOCK_EX);
        }
 
        $this->streamWrite($this->stream, $record);
 
        if ($this->useLocking) {
            flock($this->stream, LOCK_UN);
        }
    }
 
    /**
     * Write to stream
     * @param resource $stream
     * @param array $record
     */
    protected function streamWrite($stream, array $record)
    {
        fwrite($stream, (string) $record['formatted']);
    }
 
    private function customErrorHandler($code, $msg)
    {
        $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
    }
 
    /**
     * @param string $stream
     *
     * @return null|string
     */
    private function getDirFromStream($stream)
    {
        $pos = strpos($stream, '://');
        if ($pos === false) {
            return dirname($stream);
        }
 
        if ('file://' === substr($stream, 0, 7)) {
Arguments
  1. "fwrite(): write of 1978 bytes failed with errno=28 No space left on device"
    
D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php
        if ($this->useLocking) {
            // ignoring errors here, there's not much we can do about them
            flock($this->stream, LOCK_EX);
        }
 
        $this->streamWrite($this->stream, $record);
 
        if ($this->useLocking) {
            flock($this->stream, LOCK_UN);
        }
    }
 
    /**
     * Write to stream
     * @param resource $stream
     * @param array $record
     */
    protected function streamWrite($stream, array $record)
    {
        fwrite($stream, (string) $record['formatted']);
    }
 
    private function customErrorHandler($code, $msg)
    {
        $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
    }
 
    /**
     * @param string $stream
     *
     * @return null|string
     */
    private function getDirFromStream($stream)
    {
        $pos = strpos($stream, '://');
        if ($pos === false) {
            return dirname($stream);
        }
 
        if ('file://' === substr($stream, 0, 7)) {
D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php
            $this->createDir();
            $this->errorMessage = null;
            set_error_handler(array($this, 'customErrorHandler'));
            $this->stream = fopen($this->url, 'a');
            if ($this->filePermission !== null) {
                @chmod($this->url, $this->filePermission);
            }
            restore_error_handler();
            if (!is_resource($this->stream)) {
                $this->stream = null;
                throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened: '.$this->errorMessage, $this->url));
            }
        }
 
        if ($this->useLocking) {
            // ignoring errors here, there's not much we can do about them
            flock($this->stream, LOCK_EX);
        }
 
        $this->streamWrite($this->stream, $record);
 
        if ($this->useLocking) {
            flock($this->stream, LOCK_UN);
        }
    }
 
    /**
     * Write to stream
     * @param resource $stream
     * @param array $record
     */
    protected function streamWrite($stream, array $record)
    {
        fwrite($stream, (string) $record['formatted']);
    }
 
    private function customErrorHandler($code, $msg)
    {
        $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
    }
D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Handler\AbstractProcessingHandler.php
 *
 * @author Jordi Boggiano <j.boggiano@seld.be>
 * @author Christophe Coevoet <stof@notk.org>
 */
abstract class AbstractProcessingHandler extends AbstractHandler
{
    /**
     * {@inheritdoc}
     */
    public function handle(array $record)
    {
        if (!$this->isHandling($record)) {
            return false;
        }
 
        $record = $this->processRecord($record);
 
        $record['formatted'] = $this->getFormatter()->format($record);
 
        $this->write($record);
 
        return false === $this->bubble;
    }
 
    /**
     * Writes the record down to the log of the implementing handler
     *
     * @param  array $record
     * @return void
     */
    abstract protected function write(array $record);
 
    /**
     * Processes a record.
     *
     * @param  array $record
     * @return array
     */
    protected function processRecord(array $record)
    {
D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Logger.php
        }
        $ts->setTimezone(static::$timezone);
 
        $record = array(
            'message' => (string) $message,
            'context' => $context,
            'level' => $level,
            'level_name' => $levelName,
            'channel' => $this->name,
            'datetime' => $ts,
            'extra' => array(),
        );
 
        try {
            foreach ($this->processors as $processor) {
                $record = call_user_func($processor, $record);
            }
 
            while ($handler = current($this->handlers)) {
                if (true === $handler->handle($record)) {
                    break;
                }
 
                next($this->handlers);
            }
        } catch (Exception $e) {
            $this->handleException($e, $record);
        }
 
        return true;
    }
 
    /**
     * Ends a log cycle and frees all resources used by handlers.
     *
     * Closing a Handler means flushing all buffers and freeing any open resources/handles.
     * Handlers that have been closed should be able to accept log records again and re-open
     * themselves on demand, but this may not always be possible depending on implementation.
     *
     * This is useful at the end of a request and will be called automatically on every handler
D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\monolog\monolog\src\Monolog\Logger.php
     * @param  array  $context The log context
     * @return bool   Whether the record has been processed
     */
    public function err($message, array $context = array())
    {
        return $this->addRecord(static::ERROR, $message, $context);
    }
 
    /**
     * Adds a log record at the ERROR level.
     *
     * This method allows for compatibility with common interfaces.
     *
     * @param  string $message The log message
     * @param  array  $context The log context
     * @return bool   Whether the record has been processed
     */
    public function error($message, array $context = array())
    {
        return $this->addRecord(static::ERROR, $message, $context);
    }
 
    /**
     * Adds a log record at the CRITICAL level.
     *
     * This method allows for compatibility with common interfaces.
     *
     * @param  string $message The log message
     * @param  array  $context The log context
     * @return bool   Whether the record has been processed
     */
    public function crit($message, array $context = array())
    {
        return $this->addRecord(static::CRITICAL, $message, $context);
    }
 
    /**
     * Adds a log record at the CRITICAL level.
     *
     * This method allows for compatibility with common interfaces.
D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\laravel\framework\src\Illuminate\Log\Writer.php
     * @return void
     */
    public function write($level, $message, array $context = [])
    {
        $this->writeLog($level, $message, $context);
    }
 
    /**
     * Write a message to Monolog.
     *
     * @param  string  $level
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    protected function writeLog($level, $message, $context)
    {
        $this->fireLogEvent($level, $message = $this->formatMessage($message), $context);
 
        $this->monolog->{$level}($message, $context);
    }
 
    /**
     * Register a file log handler.
     *
     * @param  string  $path
     * @param  string  $level
     * @return void
     */
    public function useFiles($path, $level = 'debug')
    {
        $this->monolog->pushHandler($handler = new StreamHandler($path, $this->parseLevel($level)));
 
        $handler->setFormatter($this->getDefaultFormatter());
    }
 
    /**
     * Register a daily file log handler.
     *
     * @param  string  $path
D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\laravel\framework\src\Illuminate\Log\Writer.php
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function critical($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log an error message to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function error($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log a warning message to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function warning($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log a notice to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\laravel\framework\src\Illuminate\Foundation\Exceptions\Handler.php
     */
    public function report(Exception $e)
    {
        if ($this->shouldntReport($e)) {
            return;
        }
 
        if (method_exists($e, 'report')) {
            return $e->report();
        }
 
        try {
            $logger = $this->container->make(LoggerInterface::class);
        } catch (Exception $ex) {
            throw $e; // throw the original exception
        }
 
        $logger->error(
            $e->getMessage(),
            array_merge($this->context(), ['exception' => $e]
        ));
    }
 
    /**
     * Determine if the exception should be reported.
     *
     * @param  \Exception  $e
     * @return bool
     */
    public function shouldReport(Exception $e)
    {
        return ! $this->shouldntReport($e);
    }
 
    /**
     * Determine if the exception is in the "do not report" list.
     *
     * @param  \Exception  $e
     * @return bool
     */
D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\app\Exceptions\Handler.php
    protected $dontReport = [
        \Illuminate\Auth\AuthenticationException::class,
        \Illuminate\Auth\Access\AuthorizationException::class,
        \Symfony\Component\HttpKernel\Exception\HttpException::class,
        \Illuminate\Database\Eloquent\ModelNotFoundException::class,
        \Illuminate\Session\TokenMismatchException::class,
        \Illuminate\Validation\ValidationException::class,
    ];
 
    /**
     * Report or log an exception.
     *
     * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
     *
     * @param  \Exception  $exception
     * @return void
     */
    public function report(Exception $exception)
    {
        parent::report($exception);
    }
 
    /**
     * Render an exception into an HTTP response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Exception  $exception
     * @return \Illuminate\Http\Response
     */
    public function render($request, Exception $exception)
    {
        return parent::render($request, $exception);
    }
 
    /**
     * Convert an authentication exception into an unauthenticated response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Auth\AuthenticationException  $exception
     * @return \Illuminate\Http\Response
D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\project\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php
    }
 
    /**
     * Handle an uncaught exception from the application.
     *
     * Note: Most exceptions can be handled via the try / catch block in
     * the HTTP and Console kernels. But, fatal error exceptions must
     * be handled differently since they are not normal exceptions.
     *
     * @param  \Throwable  $e
     * @return void
     */
    public function handleException($e)
    {
        if (! $e instanceof Exception) {
            $e = new FatalThrowableError($e);
        }
 
        try {
            $this->getExceptionHandler()->report($e);
        } catch (Exception $e) {
            //
        }
 
        if ($this->app->runningInConsole()) {
            $this->renderForConsole($e);
        } else {
            $this->renderHttpResponse($e);
        }
    }
 
    /**
     * Render an exception to the console.
     *
     * @param  \Exception  $e
     * @return void
     */
    protected function renderForConsole(Exception $e)
    {
        $this->getExceptionHandler()->renderForConsole(new ConsoleOutput, $e);
[internal]

Environment & details:

empty
empty
empty
empty
empty
Key Value
_FCGI_X_PIPE_
"\\.\pipe\IISFCGI-604e63ad-dad1-4727-b843-5d1e27be4139"
TEMP
"D:\PLESKVHOST\ourindustrialcompany.com\tmp"
TMP
"D:\PLESKVHOST\ourindustrialcompany.com\tmp"
ALLUSERSPROFILE
"C:\ProgramData"
APPDATA
"C:\Windows\system32\config\systemprofile\AppData\Roaming"
AppIntRoot
"C:\Program Files\Microsoft OLE DB Provider for DB2\System\"
APP_POOL_CONFIG
"C:\inetpub\temp\apppools\ourindustrialcompany.com(domain)(4.0)(pool)\ourindustrialcompany.com(domain)(4.0)(pool).config"
APP_POOL_ID
"ourindustrialcompany.com(domain)(4.0)(pool)"
CommonProgramFiles
"C:\Program Files\Common Files"
CommonProgramFiles(x86)
"C:\Program Files (x86)\Common Files"
CommonProgramW6432
"C:\Program Files\Common Files"
COMPUTERNAME
"WIN-LDS9M70GJI3"
ComSpec
"C:\Windows\system32\cmd.exe"
DriverData
"C:\Windows\System32\Drivers\DriverData"
LOCALAPPDATA
"C:\Windows\system32\config\systemprofile\AppData\Local"
MAILENABLE_PATH
"C:\PROGRA~2\MAILEN~1"
NUMBER_OF_PROCESSORS
"8"
OS
"Windows_NT"
Path
"C:\Program Files (x86)\Mail Enable\BIN;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Mail Enable\BIN64;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Azure Data Studio\bin;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Plesk\ctl;C:\Program Files\dotnet\;C:\Program Files\Microsoft OLE DB Provider for DB2\System\;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;;C:\Program Files\Azure Data Studio\bin;C:\Program Files\GB\Plesk\bin;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps"
PATHEXT
".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC"
plesk_bin
"C:\Program Files (x86)\Plesk\admin\bin"
plesk_bin64
"C:\Program Files (x86)\Plesk\admin\bin64"
plesk_cli
"C:\Program Files (x86)\Plesk\bin"
plesk_data
"C:\Program Files (x86)\Plesk\"
plesk_dir
"C:\Program Files (x86)\Plesk\"
plesk_vhosts
"D:\PLESKVHOST"
PROCESSOR_ARCHITECTURE
"AMD64"
PROCESSOR_IDENTIFIER
"Intel64 Family 6 Model 85 Stepping 4, GenuineIntel"
PROCESSOR_LEVEL
"6"
PROCESSOR_REVISION
"5504"
ProgramData
"C:\ProgramData"
ProgramFiles
"C:\Program Files"
ProgramFiles(x86)
"C:\Program Files (x86)"
ProgramW6432
"C:\Program Files"
PSModulePath
"C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files (x86)\Microsoft SQL Server\150\Tools\PowerShell\Modules\"
PUBLIC
"C:\Users\Public"
SystemDrive
"C:"
SystemRoot
"C:\Windows"
USERDOMAIN
"WORKGROUP"
USERNAME
"WIN-LDS9M70GJI3$"
USERPROFILE
"C:\Windows\system32\config\systemprofile"
VS110COMNTOOLS
"C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\Tools\"
windir
"C:\Windows"
ORIG_PATH_INFO
"/index.php"
URL
"/index.php"
SERVER_SOFTWARE
"Microsoft-IIS/10.0"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_PORT_SECURE
"1"
SERVER_PORT
"443"
SERVER_NAME
"ourindustrialcompany.com"
SCRIPT_NAME
"/index.php"
SCRIPT_FILENAME
"D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\index.php"
REQUEST_URI
"/sitemap.xml"
REQUEST_METHOD
"GET"
REMOTE_USER
""
REMOTE_PORT
"7761"
REMOTE_HOST
"216.73.216.111"
REMOTE_ADDR
"216.73.216.111"
QUERY_STRING
""
PATH_TRANSLATED
"D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\index.php"
LOGON_USER
""
LOCAL_ADDR
"192.168.74.36"
INSTANCE_META_PATH
"/LM/W3SVC/149"
INSTANCE_NAME
"OURINDUSTRIALCOMPANY.COM"
INSTANCE_ID
"149"
HTTPS_SERVER_SUBJECT
"CN=ourindustrialcompany.com"
HTTPS_SERVER_ISSUER
"C=US, O=Let's Encrypt, CN=R10"
HTTPS_SECRETKEYSIZE
"2048"
HTTPS_KEYSIZE
"256"
HTTPS
"on"
GATEWAY_INTERFACE
"CGI/1.1"
DOCUMENT_ROOT
"D:\PLESKVHOST\ourindustrialcompany.com\httpdocs"
CONTENT_TYPE
""
CONTENT_LENGTH
"0"
CERT_SUBJECT
""
CERT_SERIALNUMBER
""
CERT_ISSUER
""
CERT_FLAGS
""
CERT_COOKIE
""
AUTH_USER
""
AUTH_PASSWORD
""
AUTH_TYPE
""
APPL_PHYSICAL_PATH
"D:\PLESKVHOST\ourindustrialcompany.com\httpdocs\"
APPL_MD_PATH
"/LM/W3SVC/149/ROOT"
IIS_UrlRewriteModule
"7,1,1993,2351"
WEBSOCKET_VERSION
"13"
UNENCODED_URL
"/sitemap.xml"
IIS_WasUrlRewritten
"1"
HTTP_X_ORIGINAL_URL
"/sitemap.xml"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_HOST
"ourindustrialcompany.com"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_ACCEPT
"*/*"
HTTP_CONTENT_LENGTH
"0"
HTTP_CONNECTION
"close"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1754618574.6604
REQUEST_TIME
1754618574
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:PgzjPR+YaV/sT7p7enImo/tpc6tsVHj/SRQHAVxysp0="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://localhost"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"admin_"
DB_USERNAME
"ourindustry"
DB_PASSWORD
"Tk18w5%j3"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
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
"null"
MAIL_PASSWORD
"null"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
MOLLIE_KEY
"test_5HcWVs9qc5pzy36H9Tu9mwAyats33J"
Key Value
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:PgzjPR+YaV/sT7p7enImo/tpc6tsVHj/SRQHAVxysp0="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://localhost"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"admin_"
DB_USERNAME
"ourindustry"
DB_PASSWORD
"Tk18w5%j3"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
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
"null"
MAIL_PASSWORD
"null"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
MOLLIE_KEY
"test_5HcWVs9qc5pzy36H9Tu9mwAyats33J"
0. Whoops\Handler\PrettyPageHandler