HTTP/1.1 200 OK
Host: 127.0.0.1:8000
Connection: close
X-Powered-By: PHP/8.2.12
Content-Type: text/html; charset=utf-8
Cache-Control: no-cache, private
Date: Thu, 14 May 2026 10:49:24 GMT
phpdebugbar-id: 01KRK1P0DWDB1A6NB5MGFMDTX3
Set-Cookie: XSRF-TOKEN=eyJpdiI6Im5HeVlxYUp1a2krVjUwQzNac3ZoNEE9PSIsInZhbHVlIjoiVzZBNC8xTDNhMEtYRDNENXp1OUhCcTI4VWhVK3NnMHhxWkVyQ0VyRFFnVERNMFU4RGxwNDVUQy9DK1R4UHY0UXh6eFRMZEREeXVvRUVZM0ZFTDhlbllVM2hYRGFYZTBVaTU1YzU3QTdXWDF0Y1VZVmJ4S1RweHU2aTBOMmh5c1YiLCJtYWMiOiJhMzgxN2UwODQxNzc5M2Q0YjllOTRhNGQzOTg3N2ZkYThmN2NkZjliYTg0ODFiYzc0YzA3ZDFkNzg4N2FmZmY3IiwidGFnIjoiIn0%3D; expires=Thu, 14 May 2026 12:49:24 GMT; Max-Age=7200; path=/; samesite=lax
Set-Cookie: laravel-session=eyJpdiI6ImZTbVJSWEZxMmJOVDY2VHg3cTBXMnc9PSIsInZhbHVlIjoiS1gzNi9ZaEQxazFqZ0FPU1Jpem8vb0RYTzQ3TmxCZzZXNmVCVi9CMVNrbVBIMnJaREtWM0VGdjhkcWNrYStld3ZQUG9PTTZ2bzAwZ21OYlhNN0FDWDVUMlVrSTdxOVVCTnQyOXR3azRZcTZOMGJQWUxqNDArbVdZNGlZL1padFEiLCJtYWMiOiI3OWViNzJjOGViMjFjNWRiZmU5M2QwMmY2NzBlYTg3YTQzNTE3NjIyZWQ1MjI1NjI2MmVhMmZmODhkNjRiM2E3IiwidGFnIjoiIn0%3D; expires=Thu, 14 May 2026 12:49:24 GMT; Max-Age=7200; path=/; httponly; samesite=lax
Set-Cookie: PHPDEBUGBAR_STACK_DATA=%5B%5D; path=/; httponly; samesite=lax

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>User Login - LendCore</title>

            <script src="https://cdn.tailwindcss.com"></script>
        <script>
        (function() {
            var host = window.location.hostname || '';
            if (!host.includes('ngrok')) {
                return;
            }

            var warningKey = 'ngrokSkipBrowserWarning';
            var url = new URL(window.location.href);

            if (!url.searchParams.has(warningKey)) {
                url.searchParams.set(warningKey, '1');
                window.history.replaceState({}, document.title, url.toString());
            }

            var originalFetch = window.fetch.bind(window);
            window.fetch = function(resource, init) {
                init = init || {};
                init.headers = new Headers(init.headers || {});
                init.headers.set('ngrok-skip-browser-warning', 'true');
                return originalFetch(resource, init);
            };

            var originalOpen = XMLHttpRequest.prototype.open;
            var originalSend = XMLHttpRequest.prototype.send;
            XMLHttpRequest.prototype.open = function(method, requestUrl) {
                this._ngrokUrl = requestUrl;
                return originalOpen.apply(this, arguments);
            };
            XMLHttpRequest.prototype.send = function(body) {
                try {
                    this.setRequestHeader('ngrok-skip-browser-warning', 'true');
                } catch (e) {
                    // ignore if the request is already sent or headers are locked
                }
                return originalSend.apply(this, arguments);
            };

            document.addEventListener('submit', function(event) {
                var form = event.target;
                if (!(form instanceof HTMLFormElement)) {
                    return;
                }
                if (form.method.toLowerCase() !== 'post') {
                    return;
                }
                var action = form.getAttribute('action') || window.location.pathname;
                var formUrl = new URL(action, window.location.origin);
                formUrl.searchParams.set(warningKey, '1');
                form.setAttribute('action', formUrl.toString());
            }, true);
        })();
    </script>
</head>
<body class="bg-slate-50 text-slate-900 min-h-screen">
    <div class="min-h-screen flex items-center justify-center bg-gray-100 px-4">
    <div class="w-full max-w-md bg-white rounded-lg shadow p-8">
        <h1 class="text-3xl font-bold text-gray-900 mb-2">User Login</h1>
        <p class="text-sm text-gray-500 mb-6">Access your loan account and manage payments</p>

        
        <form method="POST" action="http://127.0.0.1:8000/login" class="space-y-4">
            <input type="hidden" name="_token" value="KpvBRrYjaT2LP21id1bhBEhbvBP4pXQXxWIyMBk5" autocomplete="off">
            <div>
                <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label>
                <input id="email" name="email" type="email" value="" required autofocus
                    class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-indigo-500 focus:border-indigo-500" />
            </div>

            <div>
                <label for="password" class="block text-sm font-medium text-gray-700 mb-1">Password</label>
                <input id="password" name="password" type="password" required
                    class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-indigo-500 focus:border-indigo-500" />
            </div>

            <button type="submit" class="w-full px-4 py-2 bg-indigo-600 text-white rounded-lg hover:bg-indigo-700 font-medium transition">
                Sign In
            </button>
        </form>

        <div class="mt-6 text-center text-sm text-gray-500">
            <p>Demo credentials:</p>
            <p class="font-mono text-xs mt-2">Email: user@lendcore.test</p>
        </div>
    </div>
</div>
<!-- Laravel Debugbar Widget -->
<link rel="stylesheet" type="text/css" href="http://127.0.0.1:8000/_debugbar/assets?type=css&mtime=1775805858">
<script type="text/javascript" src="http://127.0.0.1:8000/_debugbar/assets?type=js&hash=1775805858"></script>
<script type="text/javascript">
(function () {
    const renderDebugbar = function () {
const phpdebugbar = new PhpDebugBar.DebugBar({"theme":"auto","hideEmptyTabs":true,"spaNavigationEvents":["livewire:navigated","turbo:load","htmx:afterSettle"]});
phpdebugbar.addTab("request", new PhpDebugBar.DebugBar.Tab({"icon":"arrows-left-right","title":"Request", "widget": new PhpDebugBar.Widgets.JsonVariableListWidget()}));
phpdebugbar.addTab("exceptions", new PhpDebugBar.DebugBar.Tab({"icon":"bug","title":"Exceptions", "widget": new PhpDebugBar.Widgets.ExceptionsWidget()}));
phpdebugbar.addTab("messages", new PhpDebugBar.DebugBar.Tab({"icon":"logs","title":"Messages", "widget": new PhpDebugBar.Widgets.MessagesWidget()}));
phpdebugbar.addIndicator("time", new PhpDebugBar.DebugBar.Indicator({"icon":"clock","tooltip":"Request Duration","link":"timeline"}), "right");
phpdebugbar.addTab("timeline", new PhpDebugBar.DebugBar.Tab({"icon":"chart-infographic","title":"Timeline", "widget": new PhpDebugBar.Widgets.TimelineWidget()}));
phpdebugbar.addIndicator("memory", new PhpDebugBar.DebugBar.Indicator({"icon":"server-cog","tooltip":"Memory Usage"}), "right");
phpdebugbar.addIndicator("version", new PhpDebugBar.DebugBar.Indicator({"icon":"brand-laravel"}), "right");
phpdebugbar.addTab("views", new PhpDebugBar.DebugBar.Tab({"icon":"file-code","title":"Views", "widget": new PhpDebugBar.Widgets.TemplatesWidget()}));
phpdebugbar.addTab("queries", new PhpDebugBar.DebugBar.Tab({"icon":"database","title":"Queries", "widget": new PhpDebugBar.Widgets.LaravelQueriesWidget()}));
phpdebugbar.addTab("models", new PhpDebugBar.DebugBar.Tab({"icon":"box","title":"Models", "widget": new PhpDebugBar.Widgets.TableVariableListWidget()}));
phpdebugbar.addTab("emails", new PhpDebugBar.DebugBar.Tab({"icon":"inbox","title":"Mails", "widget": new PhpDebugBar.Widgets.MailsWidget()}));
phpdebugbar.addTab("gate", new PhpDebugBar.DebugBar.Tab({"icon":"logs","title":"Gate", "widget": new PhpDebugBar.Widgets.MessagesWidget()}));
phpdebugbar.addTab("cache", new PhpDebugBar.DebugBar.Tab({"icon":"clipboard-text","title":"Cache", "widget": new PhpDebugBar.Widgets.LaravelCacheWidget()}));
phpdebugbar.addTab("jobs", new PhpDebugBar.DebugBar.Tab({"icon":"briefcase","title":"Jobs", "widget": new PhpDebugBar.Widgets.TableVariableListWidget()}));
phpdebugbar.addTab("http_client", new PhpDebugBar.DebugBar.Tab({"icon":"mobiledata","title":"Http client", "widget": new PhpDebugBar.Widgets.HttpWidget()}));
phpdebugbar.setDataMap({
"request": ["request.data", {}],
"request:badge": ["request.badge", null],
"exceptions": ["exceptions.exceptions", []],
"exceptions:badge": ["exceptions.count", null],
"messages": ["messages.messages", []],
"messages:badge": ["messages.count", null],
"time": ["time.duration_str", '0ms'],
"timeline": ["time", {}],
"memory": ["memory.peak_usage_str", '0B'],
"version": ["laravel.version", ],
"version:tooltip": ["laravel.tooltip", {}],
"views": ["views", []],
"views:badge": ["views.nb_templates", 0],
"queries": ["queries", []],
"queries:badge": ["queries.nb_statements", 0],
"models": ["models", {}],
"models:badge": ["models.count", 0],
"emails": ["symfonymailer_mails.mails", []],
"emails:badge": ["symfonymailer_mails.count", null],
"gate": ["gate.messages", []],
"gate:badge": ["gate.count", null],
"cache": ["cache", {}],
"cache:badge": ["cache.nb_measures", null],
"jobs": ["jobs", {}],
"jobs:badge": ["jobs.count", 0],
"http_client": ["http_client.requests", []],
"http_client:badge": ["http_client.nb_requests", 0]
});
phpdebugbar.restoreState();
phpdebugbar.enableAjaxHandlerTab();
phpdebugbar.ajaxHandler = new PhpDebugBar.AjaxHandler(phpdebugbar, undefined, true);
phpdebugbar.ajaxHandler.bindToFetch();
phpdebugbar.ajaxHandler.bindToXHR();
phpdebugbar.setOpenHandler(new PhpDebugBar.OpenHandler({"url":"http:\/\/127.0.0.1:8000\/_debugbar\/open"}));
phpdebugbar.addDataSet({"__meta":{"id":"01KRK1P0DWDB1A6NB5MGFMDTX3","datetime":"2026-05-14 10:49:24","utime":1778755764.66871,"method":"GET","uri":"\/login","ip":"127.0.0.1"},"request":{"data":{"uri":"GET login","middleware":["web"],"controller":{"value":"App\\Http\\Controllers\\Web\\UserAuthController@showLoginForm","xdebug_link":{"url":"phpstorm:\/\/open?file=C%3A%2Fxampp%2Fhtdocs%2FLendCore%2Fapp%2FHttp%2FControllers%2FWeb%2FUserAuthController.php\u0026line=13","ajax":false,"filename":"UserAuthController.php","line":"13","path":"\\app\\Http\\Controllers\\Web\\UserAuthController.php"}},"file":{"value":"app\/Http\/Controllers\/Web\/UserAuthController.php:13-16","xdebug_link":{"url":"phpstorm:\/\/open?file=C%3A%2Fxampp%2Fhtdocs%2FLendCore%2Fapp%2FHttp%2FControllers%2FWeb%2FUserAuthController.php\u0026line=13","ajax":false,"filename":"UserAuthController.php","line":"13","path":"\\app\\Http\\Controllers\\Web\\UserAuthController.php"}},"telescope":"\u003Ca href=\u0022http:\/\/127.0.0.1:8000\/_debugbar\/telescope\/a1c6e28c-ae06-49f9-a858-515cce645971\u0022 target=\u0022_blank\u0022 class=\u0022phpdebugbar-widgets-external-link\u0022\u003EView in Telescope\u003C\/a\u003E","method":"GET","format":"html","content_type":"text\/html; charset=utf-8","status_text":"OK","status_code":200,"request_query":[],"request_request":[],"request_files":[],"request_headers":{"host":["127.0.0.1:8000"],"accept":["*\/*"]},"request_server":{"DOCUMENT_ROOT":"C:\\xampp\\htdocs\\LendCore\\public","REMOTE_ADDR":"127.0.0.1","REMOTE_PORT":"65479","SERVER_SOFTWARE":"PHP 8.2.12 Development Server","SERVER_PROTOCOL":"HTTP\/1.1","SERVER_NAME":"127.0.0.1","SERVER_PORT":"8000","REQUEST_URI":"\/login","REQUEST_METHOD":"GET","SCRIPT_NAME":"\/index.php","SCRIPT_FILENAME":"C:\\xampp\\htdocs\\LendCore\\public\\index.php","PATH_INFO":"\/login","PHP_SELF":"\/index.php\/login","HTTP_HOST":"127.0.0.1:8000","HTTP_ACCEPT":"*\/*","REQUEST_TIME_FLOAT":1778755764.017169,"REQUEST_TIME":1778755764},"request_cookies":[],"request_attributes":[],"route":"","response_headers":{"content-type":["text\/html; charset=utf-8"],"cache-control":["no-cache, private"],"date":["Thu, 14 May 2026 10:49:24 GMT"],"set-cookie":["XSRF-TOKEN=eyJpdiI6Im5HeVlxYUp1a2krVjUwQzNac3ZoNEE9PSIsInZhbHVlIjoiVzZBNC8xTDNhMEtYRDNENXp1OUhCcTI4VWhVK3NnMHhxWkVyQ0VyRFFnVERNMFU4RGxwNDVUQy9DK1R4UHY0UXh6eFRMZEREeXVvRUVZM0ZFTDhlbllVM2hYRGFYZTBVaTU1YzU3QTdXWDF0Y1VZVmJ4S1RweHU2aTBOMmh5c1YiLCJtYWMiOiJhMzgxN2UwODQxNzc5M2Q0YjllOTRhNGQzOTg3N2ZkYThmN2NkZjliYTg0ODFiYzc0YzA3ZDFkNzg4N2FmZmY3IiwidGFnIjoiIn0%3D; expires=Thu, 14 May 2026 12:49:24 GMT; Max-Age=7200; path=\/; samesite=lax","laravel-session=eyJpdiI6ImZTbVJSWEZxMmJOVDY2VHg3cTBXMnc9PSIsInZhbHVlIjoiS1gzNi9ZaEQxazFqZ0FPU1Jpem8vb0RYTzQ3TmxCZzZXNmVCVi9CMVNrbVBIMnJaREtWM0VGdjhkcWNrYStld3ZQUG9PTTZ2bzAwZ21OYlhNN0FDWDVUMlVrSTdxOVVCTnQyOXR3azRZcTZOMGJQWUxqNDArbVdZNGlZL1padFEiLCJtYWMiOiI3OWViNzJjOGViMjFjNWRiZmU5M2QwMmY2NzBlYTg3YTQzNTE3NjIyZWQ1MjI1NjI2MmVhMmZmODhkNjRiM2E3IiwidGFnIjoiIn0%3D; expires=Thu, 14 May 2026 12:49:24 GMT; Max-Age=7200; path=\/; httponly; samesite=lax"]},"response_cookies":["XSRF-TOKEN=eyJpdiI6Im5HeVlxYUp1a2krVjUwQzNac3ZoNEE9PSIsInZhbHVlIjoiVzZBNC8xTDNhMEtYRDNENXp1OUhCcTI4VWhVK3NnMHhxWkVyQ0VyRFFnVERNMFU4RGxwNDVUQy9DK1R4UHY0UXh6eFRMZEREeXVvRUVZM0ZFTDhlbllVM2hYRGFYZTBVaTU1YzU3QTdXWDF0Y1VZVmJ4S1RweHU2aTBOMmh5c1YiLCJtYWMiOiJhMzgxN2UwODQxNzc5M2Q0YjllOTRhNGQzOTg3N2ZkYThmN2NkZjliYTg0ODFiYzc0YzA3ZDFkNzg4N2FmZmY3IiwidGFnIjoiIn0%3D; expires=Thu, 14-May-2026 12:49:24 GMT; path=\/","laravel-session=eyJpdiI6ImZTbVJSWEZxMmJOVDY2VHg3cTBXMnc9PSIsInZhbHVlIjoiS1gzNi9ZaEQxazFqZ0FPU1Jpem8vb0RYTzQ3TmxCZzZXNmVCVi9CMVNrbVBIMnJaREtWM0VGdjhkcWNrYStld3ZQUG9PTTZ2bzAwZ21OYlhNN0FDWDVUMlVrSTdxOVVCTnQyOXR3azRZcTZOMGJQWUxqNDArbVdZNGlZL1padFEiLCJtYWMiOiI3OWViNzJjOGViMjFjNWRiZmU5M2QwMmY2NzBlYTg3YTQzNTE3NjIyZWQ1MjI1NjI2MmVhMmZmODhkNjRiM2E3IiwidGFnIjoiIn0%3D; expires=Thu, 14-May-2026 12:49:24 GMT; path=\/; httponly"],"session_metadata":[],"session_attributes":{"_token":"Kp***k5","_previous":{"url":"http:\/\/127.0.0.1:8000\/login","route":"login"},"_flash":{"old":[],"new":[]}},"flashes":[],"path_info":"\/login","locale":"en"},"tooltip":{"status":"200 OK","full_url":"http:\/\/127.0.0.1:8000\/login","action_name":"login","controller_action":"App\\Http\\Controllers\\Web\\UserAuthController@showLoginForm"},"badge":null},"exceptions":{"count":0,"exceptions":[]},"messages":{"count":0,"messages":[]},"memory":{"peak_usage":27221112,"peak_usage_str":"26MB"},"laravel":{"version":"12.x","tooltip":{"Laravel Version":"12.58.0","PHP Version":"8.2.12","Environment":"local","Debug Mode":"Enabled","URL":"127.0.0.1:8000","Timezone":"UTC","Locale":"en"}},"views":{"count":2,"nb_templates":2,"templates":[{"name":"user.auth.login","param_count":null,"params":[],"start":1778755764.619051,"type":"blade","hash":"bladeC:\\xampp\\htdocs\\LendCore\\resources\\views\/user\/auth\/login.blade.phpuser.auth.login","xdebug_link":{"url":"phpstorm:\/\/open?file=C%3A%2Fxampp%2Fhtdocs%2FLendCore%2Fresources%2Fviews%2Fuser%2Fauth%2Flogin.blade.php\u0026line=1","ajax":false,"filename":"login.blade.php","line":"?","path":"\\resources\\views\\user\\auth\\login.blade.php"}},{"name":"layouts.app","param_count":null,"params":[],"start":1778755764.63421,"type":"blade","hash":"bladeC:\\xampp\\htdocs\\LendCore\\resources\\views\/layouts\/app.blade.phplayouts.app","xdebug_link":{"url":"phpstorm:\/\/open?file=C%3A%2Fxampp%2Fhtdocs%2FLendCore%2Fresources%2Fviews%2Flayouts%2Fapp.blade.php\u0026line=1","ajax":false,"filename":"app.blade.php","line":"?","path":"\\resources\\views\\layouts\\app.blade.php"}}]},"queries":{"count":6,"nb_statements":5,"nb_visible_statements":6,"nb_excluded_statements":0,"nb_failed_statements":0,"accumulated_duration":0.00803,"accumulated_duration_str":"8.03ms","memory_usage":0,"memory_usage_str":null,"statements":[{"sql":"Connection Established","type":"transaction","params":[],"backtrace":[{"index":7,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/CacheManager.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\CacheManager.php","line":193},{"index":8,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/CacheManager.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\CacheManager.php","line":141},{"index":9,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/CacheManager.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\CacheManager.php","line":119},{"index":10,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/CacheManager.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\CacheManager.php","line":62},{"index":11,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/CacheManager.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\CacheManager.php","line":558}],"start":1778755764.461502,"slow":false,"filename":"CacheManager.php:193","source":{"index":7,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/CacheManager.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\CacheManager.php","line":193},"xdebug_link":{"url":"phpstorm:\/\/open?file=C%3A%2Fxampp%2Fhtdocs%2FLendCore%2Fvendor%2Flaravel%2Fframework%2Fsrc%2FIlluminate%2FCache%2FCacheManager.php\u0026line=193","ajax":false,"filename":"CacheManager.php","line":"193","path":"\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\CacheManager.php"},"connection":"lendcore"},{"sql":"select * from `cache` where `key` in (\u0027laravel-cache-telescope:dump-watcher\u0027)","type":"query","params":["laravel-cache-telescope:dump-watcher"],"backtrace":[{"index":13,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/DatabaseStore.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\DatabaseStore.php","line":140},{"index":14,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/DatabaseStore.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\DatabaseStore.php","line":115},{"index":15,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/Repository.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\Repository.php","line":125},{"index":16,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/CacheManager.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\CacheManager.php","line":558},{"index":17,"namespace":null,"name":"vendor\/laravel\/telescope\/src\/Watchers\/DumpWatcher.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\telescope\\src\\Watchers\\DumpWatcher.php","line":47}],"start":1778755764.4741611,"duration":0.00366,"duration_str":"3.66ms","slow":false,"filename":"DatabaseStore.php:140","source":{"index":13,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/DatabaseStore.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\DatabaseStore.php","line":140},"xdebug_link":{"url":"phpstorm:\/\/open?file=C%3A%2Fxampp%2Fhtdocs%2FLendCore%2Fvendor%2Flaravel%2Fframework%2Fsrc%2FIlluminate%2FCache%2FDatabaseStore.php\u0026line=140","ajax":false,"filename":"DatabaseStore.php","line":"140","path":"\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\DatabaseStore.php"},"connection":"lendcore","explain":{"url":"http:\/\/127.0.0.1:8000\/_debugbar\/queries\/explain","driver":"mysql","connection":"mysql","query":"select * from `cache` where `key` in (?)","modes":["explain"],"hash":"8ecfc5799d5d133cd4d15f4f3bb0edce47f10735a13a5b7a52614414f5b7b55c"},"start_percent":0,"width_percent":45.579},{"sql":"select * from `cache` where `key` in (\u0027laravel-cache-telescope:pause-recording\u0027)","type":"query","params":["laravel-cache-telescope:pause-recording"],"backtrace":[{"index":13,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/DatabaseStore.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\DatabaseStore.php","line":140},{"index":14,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/DatabaseStore.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\DatabaseStore.php","line":115},{"index":15,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/Repository.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\Repository.php","line":125},{"index":16,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/CacheManager.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\CacheManager.php","line":558},{"index":17,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/helpers.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\helpers.php","line":288}],"start":1778755764.493754,"duration":0.00055,"duration_str":"550\u03bcs","slow":false,"filename":"DatabaseStore.php:140","source":{"index":13,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Cache\/DatabaseStore.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\DatabaseStore.php","line":140},"xdebug_link":{"url":"phpstorm:\/\/open?file=C%3A%2Fxampp%2Fhtdocs%2FLendCore%2Fvendor%2Flaravel%2Fframework%2Fsrc%2FIlluminate%2FCache%2FDatabaseStore.php\u0026line=140","ajax":false,"filename":"DatabaseStore.php","line":"140","path":"\\vendor\\laravel\\framework\\src\\Illuminate\\Cache\\DatabaseStore.php"},"connection":"lendcore","explain":{"url":"http:\/\/127.0.0.1:8000\/_debugbar\/queries\/explain","driver":"mysql","connection":"mysql","query":"select * from `cache` where `key` in (?)","modes":["explain"],"hash":"a72a7ba793907948c5cbf2b707b8eb897183b253f0361506d368e7bf6e7ee4c9"},"start_percent":45.579,"width_percent":6.849},{"sql":"select * from `sessions` where `id` = \u0027RgP2cmiHYOxJWFzwVp9MFIOZxOjckmA8LV4EffwZ\u0027 limit 1","type":"query","params":["RgP2cmiHYOxJWFzwVp9MFIOZxOjckmA8LV4EffwZ"],"backtrace":[{"index":15,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/DatabaseSessionHandler.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\DatabaseSessionHandler.php","line":96},{"index":16,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/Store.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Store.php","line":128},{"index":17,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/Store.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Store.php","line":116},{"index":18,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/Store.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Store.php","line":100},{"index":19,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Middleware\\StartSession.php","line":146}],"start":1778755764.564011,"duration":0.00064,"duration_str":"640\u03bcs","slow":false,"filename":"DatabaseSessionHandler.php:96","source":{"index":15,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/DatabaseSessionHandler.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\DatabaseSessionHandler.php","line":96},"xdebug_link":{"url":"phpstorm:\/\/open?file=C%3A%2Fxampp%2Fhtdocs%2FLendCore%2Fvendor%2Flaravel%2Fframework%2Fsrc%2FIlluminate%2FSession%2FDatabaseSessionHandler.php\u0026line=96","ajax":false,"filename":"DatabaseSessionHandler.php","line":"96","path":"\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\DatabaseSessionHandler.php"},"connection":"lendcore","explain":{"url":"http:\/\/127.0.0.1:8000\/_debugbar\/queries\/explain","driver":"mysql","connection":"mysql","query":"select * from `sessions` where `id` = ? limit 1","modes":["explain"],"hash":"a4de0d87f71c4cf32c18972d5ca0ef9c3153cad7f740928586535f0437dd6a7d"},"start_percent":52.428,"width_percent":7.97},{"sql":"select * from `sessions` where `id` = \u0027RgP2cmiHYOxJWFzwVp9MFIOZxOjckmA8LV4EffwZ\u0027 limit 1","type":"query","params":["RgP2cmiHYOxJWFzwVp9MFIOZxOjckmA8LV4EffwZ"],"backtrace":[{"index":15,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/DatabaseSessionHandler.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\DatabaseSessionHandler.php","line":96},{"index":16,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/DatabaseSessionHandler.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\DatabaseSessionHandler.php","line":135},{"index":17,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/Store.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Store.php","line":187},{"index":18,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Middleware\\StartSession.php","line":248},{"index":19,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Middleware\\StartSession.php","line":129}],"start":1778755764.6496708,"duration":0.00061,"duration_str":"610\u03bcs","slow":false,"filename":"DatabaseSessionHandler.php:96","source":{"index":15,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/DatabaseSessionHandler.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\DatabaseSessionHandler.php","line":96},"xdebug_link":{"url":"phpstorm:\/\/open?file=C%3A%2Fxampp%2Fhtdocs%2FLendCore%2Fvendor%2Flaravel%2Fframework%2Fsrc%2FIlluminate%2FSession%2FDatabaseSessionHandler.php\u0026line=96","ajax":false,"filename":"DatabaseSessionHandler.php","line":"96","path":"\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\DatabaseSessionHandler.php"},"connection":"lendcore","explain":{"url":"http:\/\/127.0.0.1:8000\/_debugbar\/queries\/explain","driver":"mysql","connection":"mysql","query":"select * from `sessions` where `id` = ? limit 1","modes":["explain"],"hash":"a4de0d87f71c4cf32c18972d5ca0ef9c3153cad7f740928586535f0437dd6a7d"},"start_percent":60.399,"width_percent":7.597},{"sql":"insert into `sessions` (`payload`, `last_activity`, `user_id`, `ip_address`, `user_agent`, `id`) values (\u0027YTozOntzOjY6Il90b2tlbiI7czo0MDoiS3B2QlJyWWphVDJMUDIxaWQxYmhCRWhidkJQNHBYUVh4V0l5TUJrNSI7czo5OiJfcHJldmlvdXMiO2E6Mjp7czozOiJ1cmwiO3M6Mjc6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9sb2dpbiI7czo1OiJyb3V0ZSI7czo1OiJsb2dpbiI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=\u0027, 1778755764, null, \u0027127.0.0.1\u0027, \u0027\u0027, \u0027RgP2cmiHYOxJWFzwVp9MFIOZxOjckmA8LV4EffwZ\u0027)","type":"query","params":["YTozOntzOjY6Il90b2tlbiI7czo0MDoiS3B2QlJyWWphVDJMUDIxaWQxYmhCRWhidkJQNHBYUVh4V0l5TUJrNSI7czo5OiJfcHJldmlvdXMiO2E6Mjp7czozOiJ1cmwiO3M6Mjc6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9sb2dpbiI7czo1OiJyb3V0ZSI7czo1OiJsb2dpbiI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=",1778755764,null,"127.0.0.1","","RgP2cmiHYOxJWFzwVp9MFIOZxOjckmA8LV4EffwZ"],"backtrace":[{"index":10,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/DatabaseSessionHandler.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\DatabaseSessionHandler.php","line":157},{"index":11,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/DatabaseSessionHandler.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\DatabaseSessionHandler.php","line":141},{"index":12,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/Store.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Store.php","line":187},{"index":13,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Middleware\\StartSession.php","line":248},{"index":14,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Middleware\\StartSession.php","line":129}],"start":1778755764.657711,"duration":0.00257,"duration_str":"2.57ms","slow":false,"filename":"DatabaseSessionHandler.php:157","source":{"index":10,"namespace":null,"name":"vendor\/laravel\/framework\/src\/Illuminate\/Session\/DatabaseSessionHandler.php","file":"C:\\xampp\\htdocs\\LendCore\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\DatabaseSessionHandler.php","line":157},"xdebug_link":{"url":"phpstorm:\/\/open?file=C%3A%2Fxampp%2Fhtdocs%2FLendCore%2Fvendor%2Flaravel%2Fframework%2Fsrc%2FIlluminate%2FSession%2FDatabaseSessionHandler.php\u0026line=157","ajax":false,"filename":"DatabaseSessionHandler.php","line":"157","path":"\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\DatabaseSessionHandler.php"},"connection":"lendcore","start_percent":67.995,"width_percent":32.005}]},"models":{"data":[],"count":0,"key_map":{"retrieved":"Retrieved","created":"Created","updated":"Updated","deleted":"Deleted"},"is_counter":true,"badges":[]},"symfonymailer_mails":{"count":0,"mails":[]},"gate":{"count":0,"messages":[]},"jobs":{"data":[],"count":0,"key_map":{"value":"Count"},"is_counter":true},"http_client":{"nb_requests":0,"requests":[]},"time":{"count":7,"start":1778755764.01776,"end":1778755764.67396,"duration":0.6561999320983887,"duration_str":"656ms","measures":[{"label":"Booting","start":1778755764.01776,"relative_start":0,"end":1778755764.436533,"relative_end":1778755764.436533,"duration":0.41877293586730957,"duration_str":"419ms","memory":0,"memory_str":"0B","params":[],"collector":null,"group":null},{"label":"Application","start":1778755764.436554,"relative_start":0.4187939167022705,"end":1778755764.673964,"relative_end":4.0531158447265625e-6,"duration":0.2374100685119629,"duration_str":"237ms","memory":0,"memory_str":"0B","params":[],"collector":"time","group":null},{"label":"Routing","start":1778755764.547989,"relative_start":0.530228853225708,"end":1778755764.553994,"relative_end":1778755764.553994,"duration":0.006005048751831055,"duration_str":"6.01ms","memory":0,"memory_str":"0B","params":[],"collector":null,"group":null},{"label":"Preparing Response","start":1778755764.615487,"relative_start":0.5977270603179932,"end":1778755764.642481,"relative_end":1778755764.642481,"duration":0.026993989944458008,"duration_str":"26.99ms","memory":0,"memory_str":"0B","params":[],"collector":null,"group":null},{"label":"user.auth.login","start":1778755764.619051,"relative_start":0.6012909412384033,"end":1778755764.619051,"relative_end":1778755764.619051,"duration":0,"duration_str":"0\u03bcs","memory":0,"memory_str":"0B","params":[],"collector":"views","group":"views"},{"label":"layouts.app","start":1778755764.63421,"relative_start":0.6164500713348389,"end":1778755764.63421,"relative_end":1778755764.63421,"duration":0,"duration_str":"0\u03bcs","memory":0,"memory_str":"0B","params":[],"collector":"views","group":"views"},{"label":"Preparing Response","start":1778755764.665012,"relative_start":0.6472518444061279,"end":1778755764.665108,"relative_end":1778755764.665108,"duration":9.608268737792969e-5,"duration_str":"96\u03bcs","memory":0,"memory_str":"0B","params":[],"collector":null,"group":null}]},"cache":{"count":2,"start":1778755764.017169,"end":1778755764.673997,"duration":0.6568279266357422,"duration_str":"657ms","measures":[{"label":"missed\ttelescope:dump-watcher","start":1778755764.465354,"relative_start":0.4481849670410156,"end":1778755764.480163,"relative_end":1778755764.480163,"duration":0.014809131622314453,"duration_str":"14.81ms","memory":0,"memory_str":"0B","params":{"storeName":"database","key":"telescope:dump-watcher","tags":[]},"collector":null,"group":null},{"label":"missed\ttelescope:pause-recording","start":1778755764.493586,"relative_start":0.47641706466674805,"end":1778755764.49647,"relative_end":1778755764.49647,"duration":0.0028839111328125,"duration_str":"2.88ms","memory":0,"memory_str":"0B","params":{"storeName":"database","key":"telescope:pause-recording","tags":[]},"collector":null,"group":null}],"nb_measures":2}}, "01KRK1P0DWDB1A6NB5MGFMDTX3", "", true);

    window.PhpDebugBar.instance = phpdebugbar;
    window.phpdebugbar = phpdebugbar;
    };

    if (document.readyState === 'loading') {
        document.addEventListener('DOMContentLoaded', renderDebugbar, { once: true });
    } else {
        renderDebugbar();
    }
})();
</script></body>
</html>
