Advertisement
Guest User

Untitled

a guest
Nov 9th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 65.90 KB | None | 0 0
  1.  
  2. <link rel='stylesheet' type='text/css' property='stylesheet' href='//myticketgh.net/_debugbar/assets/stylesheets?v=1534935979'>
  3. <script type='text/javascript' src='//myticketgh.net/_debugbar/assets/javascript?v=1534935979'></script>
  4. <script type="text/javascript">jQuery.noConflict(true);</script>
  5. <script> Sfdump = window.Sfdump || (function (doc) { var refStyle = doc.createElement('style'), rxEsc = /([.*+?^${}()|\[\]\/\\])/g, idRx = /\bsf-dump-\d+-ref[012]\w+\b/, keyHint = 0 <= navigator.platform.toUpperCase().indexOf('MAC') ? 'Cmd' : 'Ctrl', addEventListener = function (e, n, cb) { e.addEventListener(n, cb, false); }; (doc.documentElement.firstElementChild || doc.documentElement.children[0]).appendChild(refStyle); if (!doc.addEventListener) { addEventListener = function (element, eventName, callback) { element.attachEvent('on' + eventName, function (e) { e.preventDefault = function () {e.returnValue = false;}; e.target = e.srcElement; callback(e); }); }; } function toggle(a, recursive) { var s = a.nextSibling || {}, oldClass = s.className, arrow, newClass; if (/\bsf-dump-compact\b/.test(oldClass)) { arrow = '▼'; newClass = 'sf-dump-expanded'; } else if (/\bsf-dump-expanded\b/.test(oldClass)) { arrow = '▶'; newClass = 'sf-dump-compact'; } else { return false; } if (doc.createEvent && s.dispatchEvent) { var event = doc.createEvent('Event'); event.initEvent('sf-dump-expanded' === newClass ? 'sfbeforedumpexpand' : 'sfbeforedumpcollapse', true, false); s.dispatchEvent(event); } a.lastChild.innerHTML = arrow; s.className = s.className.replace(/\bsf-dump-(compact|expanded)\b/, newClass); if (recursive) { try { a = s.querySelectorAll('.'+oldClass); for (s = 0; s < a.length; ++s) { if (-1 == a[s].className.indexOf(newClass)) { a[s].className = newClass; a[s].previousSibling.lastChild.innerHTML = arrow; } } } catch (e) { } } return true; }; function collapse(a, recursive) { var s = a.nextSibling || {}, oldClass = s.className; if (/\bsf-dump-expanded\b/.test(oldClass)) { toggle(a, recursive); return true; } return false; }; function expand(a, recursive) { var s = a.nextSibling || {}, oldClass = s.className; if (/\bsf-dump-compact\b/.test(oldClass)) { toggle(a, recursive); return true; } return false; }; function collapseAll(root) { var a = root.querySelector('a.sf-dump-toggle'); if (a) { collapse(a, true); expand(a); return true; } return false; } function reveal(node) { var previous, parents = []; while ((node = node.parentNode || {}) && (previous = node.previousSibling) && 'A' === previous.tagName) { parents.push(previous); } if (0 !== parents.length) { parents.forEach(function (parent) { expand(parent); }); return true; } return false; } function highlight(root, activeNode, nodes) { resetHighlightedNodes(root); Array.from(nodes||[]).forEach(function (node) { if (!/\bsf-dump-highlight\b/.test(node.className)) { node.className = node.className + ' sf-dump-highlight'; } }); if (!/\bsf-dump-highlight-active\b/.test(activeNode.className)) { activeNode.className = activeNode.className + ' sf-dump-highlight-active'; } } function resetHighlightedNodes(root) { Array.from(root.querySelectorAll('.sf-dump-str, .sf-dump-key, .sf-dump-public, .sf-dump-protected, .sf-dump-private')).forEach(function (strNode) { strNode.className = strNode.className.replace(/\bsf-dump-highlight\b/, ''); strNode.className = strNode.className.replace(/\bsf-dump-highlight-active\b/, ''); }); } return function (root, x) { root = doc.getElementById(root); var indentRx = new RegExp('^('+(root.getAttribute('data-indent-pad') || ' ').replace(rxEsc, '\\$1')+')+', 'm'), options = {"maxDepth":1,"maxStringLength":160,"fileLinkFormat":false}, elt = root.getElementsByTagName('A'), len = elt.length, i = 0, s, h, t = []; while (i < len) t.push(elt[i++]); for (i in x) { options[i] = x[i]; } function a(e, f) { addEventListener(root, e, function (e) { if ('A' == e.target.tagName) { f(e.target, e); } else if ('A' == e.target.parentNode.tagName) { f(e.target.parentNode, e); } else if (e.target.nextElementSibling && 'A' == e.target.nextElementSibling.tagName) { f(e.target.nextElementSibling, e, true); } }); }; function isCtrlKey(e) { return e.ctrlKey || e.metaKey; } function xpathString(str) { var parts = str.match(/[^'"]+|['"]/g).map(function (part) { if ("'" == part) { return '"\'"'; } if ('"' == part) { return "'\"'"; } return "'" + part + "'"; }); return "concat(" + parts.join(",") + ", '')"; } function xpathHasClass(className) { return "contains(concat(' ', normalize-space(@class), ' '), ' " + className +" ')"; } addEventListener(root, 'mouseover', function (e) { if ('' != refStyle.innerHTML) { refStyle.innerHTML = ''; } }); a('mouseover', function (a, e, c) { if (c) { e.target.style.cursor = "pointer"; } else if (a = idRx.exec(a.className)) { try { refStyle.innerHTML = '.phpdebugbar pre.sf-dump .'+a[0]+'{background-color: #B729D9; color: #FFF !important; border-radius: 2px}'; } catch (e) { } } }); a('click', function (a, e, c) { if (/\bsf-dump-toggle\b/.test(a.className)) { e.preventDefault(); if (!toggle(a, isCtrlKey(e))) { var r = doc.getElementById(a.getAttribute('href').substr(1)), s = r.previousSibling, f = r.parentNode, t = a.parentNode; t.replaceChild(r, a); f.replaceChild(a, s); t.insertBefore(s, r); f = f.firstChild.nodeValue.match(indentRx); t = t.firstChild.nodeValue.match(indentRx); if (f && t && f[0] !== t[0]) { r.innerHTML = r.innerHTML.replace(new RegExp('^'+f[0].replace(rxEsc, '\\$1'), 'mg'), t[0]); } if (/\bsf-dump-compact\b/.test(r.className)) { toggle(s, isCtrlKey(e)); } } if (c) { } else if (doc.getSelection) { try { doc.getSelection().removeAllRanges(); } catch (e) { doc.getSelection().empty(); } } else { doc.selection.empty(); } } else if (/\bsf-dump-str-toggle\b/.test(a.className)) { e.preventDefault(); e = a.parentNode.parentNode; e.className = e.className.replace(/\bsf-dump-str-(expand|collapse)\b/, a.parentNode.className); } }); elt = root.getElementsByTagName('SAMP'); len = elt.length; i = 0; while (i < len) t.push(elt[i++]); len = t.length; for (i = 0; i < len; ++i) { elt = t[i]; if ('SAMP' == elt.tagName) { a = elt.previousSibling || {}; if ('A' != a.tagName) { a = doc.createElement('A'); a.className = 'sf-dump-ref'; elt.parentNode.insertBefore(a, elt); } else { a.innerHTML += ' '; } a.title = (a.title ? a.title+'\n[' : '[')+keyHint+'+click] Expand all children'; a.innerHTML += '
  6.    <span></span>'; a.className += ' sf-dump-toggle'; x = 1; if ('sf-dump' != elt.parentNode.className) { x += elt.parentNode.getAttribute('data-depth')/1; } elt.setAttribute('data-depth', x); var className = elt.className; elt.className = 'sf-dump-expanded'; if (className ? 'sf-dump-expanded' !== className : (x > options.maxDepth)) { toggle(a); } } else if (/\bsf-dump-ref\b/.test(elt.className) && (a = elt.getAttribute('href'))) { a = a.substr(1); elt.className += ' '+a; if (/[\[{]$/.test(elt.previousSibling.nodeValue)) { a = a != elt.nextSibling.id && doc.getElementById(a); try { s = a.nextSibling; elt.appendChild(a); s.parentNode.insertBefore(a, s); if (/^[@#]/.test(elt.innerHTML)) { elt.innerHTML += '
  7.     <span></span>'; } else { elt.innerHTML = '
  8.     <span></span>'; elt.className = 'sf-dump-ref'; } elt.className += ' sf-dump-toggle'; } catch (e) { if ('&' == elt.innerHTML.charAt(0)) { elt.innerHTML = '…'; elt.className = 'sf-dump-ref'; } } } } } if (doc.evaluate && Array.from && root.children.length > 1) { root.setAttribute('tabindex', 0); SearchState = function () { this.nodes = []; this.idx = 0; }; SearchState.prototype = { next: function () { if (this.isEmpty()) { return this.current(); } this.idx = this.idx< (this.nodes.length - 1) ? this.idx + 1 : 0; return this.current(); }, previous: function () { if (this.isEmpty()) { return this.current(); } this.idx = this.idx > 0 ? this.idx - 1 : (this.nodes.length - 1); return this.current(); }, isEmpty: function () { return 0 === this.count(); }, current: function () { if (this.isEmpty()) { return null; } return this.nodes[this.idx]; }, reset: function () { this.nodes = []; this.idx = 0; }, count: function () { return this.nodes.length; }, }; function showCurrent(state) { var currentNode = state.current(); if (currentNode) { reveal(currentNode); highlight(root, currentNode, state.nodes); } counter.textContent = (state.isEmpty() ? 0 : state.idx + 1) + ' of ' + state.count(); } var search = doc.createElement('div'); search.className = 'sf-dump-search-wrapper sf-dump-search-hidden'; search.innerHTML = '
  9.     <input type="text" class="sf-dump-search-input">
  10.     <span class="sf-dump-search-count">0 of 0<\/span>
  11.         <button type="button" class="sf-dump-search-input-previous" tabindex="-1">
  12.             <svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg">
  13.                 <path d="M1683 1331l-166 165q-19 19-45 19t-45-19l-531-531-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-45.5t19-45.5l742-741q19-19 45-19t45 19l742 741q19 19 19 45.5t-19 45.5z"\/><\/svg><\/button>
  14.                 <button type="button" class="sf-dump-search-input-next" tabindex="-1">
  15.                     <svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg">
  16.                         <path d="M1683 808l-742 741q-19 19-45 19t-45-19l-742-741q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z"\/><\/svg><\/button> '; root.insertBefore(search, root.firstChild); var state = new SearchState(); var searchInput = search.querySelector('.sf-dump-search-input'); var counter = search.querySelector('.sf-dump-search-count'); var searchInputTimer = 0; var previousSearchQuery = ''; addEventListener(searchInput, 'keyup', function (e) { var searchQuery = e.target.value; /* Don't perform anything if the pressed key didn't change the query */ if (searchQuery === previousSearchQuery) { return; } previousSearchQuery = searchQuery; clearTimeout(searchInputTimer); searchInputTimer = setTimeout(function () { state.reset(); collapseAll(root); resetHighlightedNodes(root); if ('' === searchQuery) { counter.textContent = '0 of 0'; return; } var classMatches = [ "sf-dump-str", "sf-dump-key", "sf-dump-public", "sf-dump-protected", "sf-dump-private", ].map(xpathHasClass).join(' or '); var xpathResult = doc.evaluate('.//span[' + classMatches + '][contains(translate(child::text(), ' + xpathString(searchQuery.toUpperCase()) + ', ' + xpathString(searchQuery.toLowerCase()) + '), ' + xpathString(searchQuery.toLowerCase()) + ')]', root, null, XPathResult.ORDERED_NODE_ITERATOR_TYPE, null); while (node = xpathResult.iterateNext()) state.nodes.push(node); showCurrent(state); }, 400); }); Array.from(search.querySelectorAll('.sf-dump-search-input-next, .sf-dump-search-input-previous')).forEach(function (btn) { addEventListener(btn, 'click', function (e) { e.preventDefault(); -1 !== e.target.className.indexOf('next') ? state.next() : state.previous(); searchInput.focus(); collapseAll(root); showCurrent(state); }) }); addEventListener(root, 'keydown', function (e) { var isSearchActive = !/\bsf-dump-search-hidden\b/.test(search.className); if ((114 === e.keyCode && !isSearchActive) || (isCtrlKey(e) && 70 === e.keyCode)) { /* F3 or CMD/CTRL + F */ e.preventDefault(); search.className = search.className.replace(/\bsf-dump-search-hidden\b/, ''); searchInput.focus(); } else if (isSearchActive) { if (27 === e.keyCode) { /* ESC key */ search.className += ' sf-dump-search-hidden'; e.preventDefault(); resetHighlightedNodes(root); searchInput.value = ''; } else if ( (isCtrlKey(e) && 71 === e.keyCode) /* CMD/CTRL + G */ || 13 === e.keyCode /* Enter */ || 114 === e.keyCode /* F3 */ ) { e.preventDefault(); e.shiftKey ? state.previous() : state.next(); collapseAll(root); showCurrent(state); } } }); } if (0 >= options.maxStringLength) { return; } try { elt = root.querySelectorAll('.sf-dump-str'); len = elt.length; i = 0; t = []; while (i < len) t.push(elt[i++]); len = t.length; for (i = 0; i < len; ++i) { elt = t[i]; s = elt.innerText || elt.textContent; x = s.length - options.maxStringLength; if (0 < x) { h = elt.innerHTML; elt[elt.innerText ? 'innerText' : 'textContent'] = s.substring(0, options.maxStringLength); elt.className += ' sf-dump-str-collapse'; elt.innerHTML = '
  17.                        <span class=sf-dump-str-collapse>'+h+'
  18.                             <a class="sf-dump-ref sf-dump-str-toggle" title="Collapse"></a>
  19.                         </span>'+ '
  20.                         <span class=sf-dump-str-expand>'+elt.innerHTML+'
  21.                             <a class="sf-dump-ref sf-dump-str-toggle" title="'+x+' remaining characters"></a>
  22.                         </span>'; } } } catch (e) { } }; })(document);
  23.                     </script>
  24.                     <style> .phpdebugbar pre.sf-dump { display: block; white-space: pre; padding: 5px; } .phpdebugbar pre.sf-dump:after { content: ""; visibility: hidden; display: block; height: 0; clear: both; } .phpdebugbar pre.sf-dump span { display: inline; } .phpdebugbar pre.sf-dump .sf-dump-compact { display: none; } .phpdebugbar pre.sf-dump abbr { text-decoration: none; border: none; cursor: help; } .phpdebugbar pre.sf-dump a { text-decoration: none; cursor: pointer; border: 0; outline: none; color: inherit; } .phpdebugbar pre.sf-dump .sf-dump-ellipsis { display: inline-block; overflow: visible; text-overflow: ellipsis; max-width: 5em; white-space: nowrap; overflow: hidden; vertical-align: top; } .phpdebugbar pre.sf-dump .sf-dump-ellipsis+.sf-dump-ellipsis { max-width: none; } .phpdebugbar pre.sf-dump code { display:inline; padding:0; background:none; } .sf-dump-str-collapse .sf-dump-str-collapse { display: none; } .sf-dump-str-expand .sf-dump-str-expand { display: none; } .sf-dump-public.sf-dump-highlight, .sf-dump-protected.sf-dump-highlight, .sf-dump-private.sf-dump-highlight, .sf-dump-str.sf-dump-highlight, .sf-dump-key.sf-dump-highlight { background: rgba(111, 172, 204, 0.3); border: 1px solid #7DA0B1; border-radius: 3px; } .sf-dump-public.sf-dump-highlight-active, .sf-dump-protected.sf-dump-highlight-active, .sf-dump-private.sf-dump-highlight-active, .sf-dump-str.sf-dump-highlight-active, .sf-dump-key.sf-dump-highlight-active { background: rgba(253, 175, 0, 0.4); border: 1px solid #ffa500; border-radius: 3px; } .phpdebugbar pre.sf-dump .sf-dump-search-hidden { display: none; } .phpdebugbar pre.sf-dump .sf-dump-search-wrapper { float: right; font-size: 0; white-space: nowrap; max-width: 100%; text-align: right; } .phpdebugbar pre.sf-dump .sf-dump-search-wrapper > * { vertical-align: top; box-sizing: border-box; height: 21px; font-weight: normal; border-radius: 0; background: #FFF; color: #757575; border: 1px solid #BBB; } .phpdebugbar pre.sf-dump .sf-dump-search-wrapper > input.sf-dump-search-input { padding: 3px; height: 21px; font-size: 12px; border-right: none; width: 140px; border-top-left-radius: 3px; border-bottom-left-radius: 3px; color: #000; } .phpdebugbar pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-next, .phpdebugbar pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-previous { background: #F2F2F2; outline: none; border-left: none; font-size: 0; line-height: 0; } .phpdebugbar pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-next { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .phpdebugbar pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-next > svg, .phpdebugbar pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-previous > svg { pointer-events: none; width: 12px; height: 12px; } .phpdebugbar pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-count { display: inline-block; padding: 0 5px; margin: 0; border-left: none; line-height: 21px; font-size: 12px; }.phpdebugbar pre.sf-dump, .phpdebugbar pre.sf-dump .sf-dump-default{word-wrap: break-word; white-space: pre-wrap; word-break: normal}.phpdebugbar pre.sf-dump .sf-dump-num{font-weight:bold; color:#1299DA}.phpdebugbar pre.sf-dump .sf-dump-const{font-weight:bold}.phpdebugbar pre.sf-dump .sf-dump-str{font-weight:bold; color:#3A9B26}.phpdebugbar pre.sf-dump .sf-dump-note{color:#1299DA}.phpdebugbar pre.sf-dump .sf-dump-ref{color:#7B7B7B}.phpdebugbar pre.sf-dump .sf-dump-public{color:#000000}.phpdebugbar pre.sf-dump .sf-dump-protected{color:#000000}.phpdebugbar pre.sf-dump .sf-dump-private{color:#000000}.phpdebugbar pre.sf-dump .sf-dump-meta{color:#B729D9}.phpdebugbar pre.sf-dump .sf-dump-key{color:#3A9B26}.phpdebugbar pre.sf-dump .sf-dump-index{color:#1299DA}.phpdebugbar pre.sf-dump .sf-dump-ellipsis{color:#A0A000}</style>
  25.                     <script type="text/javascript">
  26. var phpdebugbar = new PhpDebugBar.DebugBar();
  27. phpdebugbar.addIndicator("php_version", new PhpDebugBar.DebugBar.Indicator({"icon":"code","tooltip":"Version"}), "right");
  28. phpdebugbar.addTab("messages", new PhpDebugBar.DebugBar.Tab({"icon":"list-alt","title":"Messages", "widget": new PhpDebugBar.Widgets.MessagesWidget()}));
  29. phpdebugbar.addIndicator("time", new PhpDebugBar.DebugBar.Indicator({"icon":"clock-o","tooltip":"Request Duration"}), "right");
  30. phpdebugbar.addTab("timeline", new PhpDebugBar.DebugBar.Tab({"icon":"tasks","title":"Timeline", "widget": new PhpDebugBar.Widgets.TimelineWidget()}));
  31. phpdebugbar.addIndicator("memory", new PhpDebugBar.DebugBar.Indicator({"icon":"cogs","tooltip":"Memory Usage"}), "right");
  32. phpdebugbar.addTab("exceptions", new PhpDebugBar.DebugBar.Tab({"icon":"bug","title":"Exceptions", "widget": new PhpDebugBar.Widgets.ExceptionsWidget()}));
  33. phpdebugbar.addTab("views", new PhpDebugBar.DebugBar.Tab({"icon":"leaf","title":"Views", "widget": new PhpDebugBar.Widgets.TemplatesWidget()}));
  34. phpdebugbar.addTab("route", new PhpDebugBar.DebugBar.Tab({"icon":"share","title":"Route", "widget": new PhpDebugBar.Widgets.VariableListWidget()}));
  35. phpdebugbar.addIndicator("currentroute", new PhpDebugBar.DebugBar.Indicator({"icon":"share","tooltip":"Route"}), "right");
  36. phpdebugbar.addTab("queries", new PhpDebugBar.DebugBar.Tab({"icon":"database","title":"Queries", "widget": new PhpDebugBar.Widgets.LaravelSQLQueriesWidget()}));
  37. phpdebugbar.addTab("emails", new PhpDebugBar.DebugBar.Tab({"icon":"inbox","title":"Mails", "widget": new PhpDebugBar.Widgets.MailsWidget()}));
  38. phpdebugbar.addTab("auth", new PhpDebugBar.DebugBar.Tab({"icon":"lock","title":"Auth", "widget": new PhpDebugBar.Widgets.VariableListWidget()}));
  39. phpdebugbar.addIndicator("auth.name", new PhpDebugBar.DebugBar.Indicator({"icon":"user","tooltip":"Auth status"}), "right");
  40. phpdebugbar.addTab("gate", new PhpDebugBar.DebugBar.Tab({"icon":"list-alt","title":"Gate", "widget": new PhpDebugBar.Widgets.MessagesWidget()}));
  41. phpdebugbar.addTab("session", new PhpDebugBar.DebugBar.Tab({"icon":"archive","title":"Session", "widget": new PhpDebugBar.Widgets.VariableListWidget()}));
  42. phpdebugbar.addTab("request", new PhpDebugBar.DebugBar.Tab({"icon":"tags","title":"Request", "widget": new PhpDebugBar.Widgets.VariableListWidget()}));
  43. phpdebugbar.setDataMap({
  44. "php_version": ["php.version", ],
  45. "messages": ["messages.messages", []],
  46. "messages:badge": ["messages.count", null],
  47. "time": ["time.duration_str", '0ms'],
  48. "timeline": ["time", {}],
  49. "memory": ["memory.peak_usage_str", '0B'],
  50. "exceptions": ["exceptions.exceptions", []],
  51. "exceptions:badge": ["exceptions.count", null],
  52. "views": ["views", []],
  53. "views:badge": ["views.nb_templates", 0],
  54. "route": ["route", {}],
  55. "currentroute": ["route.uri", ],
  56. "queries": ["queries", []],
  57. "queries:badge": ["queries.nb_statements", 0],
  58. "emails": ["swiftmailer_mails.mails", []],
  59. "emails:badge": ["swiftmailer_mails.count", null],
  60. "auth": ["auth.guards", {}],
  61. "auth.name": ["auth.names", ],
  62. "gate": ["gate.messages", []],
  63. "gate:badge": ["gate.count", null],
  64. "session": ["session", {}],
  65. "request": ["request", {}]
  66. });
  67. phpdebugbar.restoreState();
  68. phpdebugbar.ajaxHandler = new PhpDebugBar.AjaxHandler(phpdebugbar, undefined, true);
  69. phpdebugbar.ajaxHandler.bindToXHR();
  70. phpdebugbar.setOpenHandler(new PhpDebugBar.OpenHandler({"url":"http:\/\/myticketgh.net\/_debugbar\/open"}));
  71. phpdebugbar.addDataSet({"__meta":{"id":"X4e3de877dfdc7e1e4a47fd3ed2bd6f31","datetime":"2018-11-09 12:04:11","utime":1541765051.655208,"method":"POST","uri":"\/api\/checkout","ip":"154.160.1.96"},"php":{"version":"7.1.20","interface":"apache2handler"},"messages":{"count":1,"messages":[{"message":"[12:04:10] LOG.error: Wrong number of segments {\"line\":78,\"file\":\"\\\/var\\\/app\\\/current\\\/vendor\\\/firebase\\\/php-jwt\\\/src\\\/JWT.php\",\"trace\":\"#0 \\\/var\\\/app\\\/current\\\/app\\\/Http\\\/Controllers\\\/Shared\\\/CheckoutController.php(225): Firebase\\\\JWT\\\\JWT::decode(NULL, 'TkTwg6lyR6cnUT7...', Array)\\n#1 \\\/var\\\/app\\\/current\\\/app\\\/Http\\\/Controllers\\\/Shared\\\/CheckoutController.php(205): App\\\\Http\\\\Controllers\\\\Shared\\\\CheckoutController->decode(NULL)\\n#2 \\\/var\\\/app\\\/current\\\/app\\\/Http\\\/Controllers\\\/Shared\\\/CheckoutController.php(103): App\\\\Http\\\\Controllers\\\\Shared\\\\CheckoutController->saveExtras(1, 2, Array)\\n#3 [internal function]: App\\\\Http\\\\Controllers\\\\Shared\\\\CheckoutController->checkout(Object(Illuminate\\\\Http\\\\Request))\\n#4 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Controller.php(54): call_user_func_array(Array, Array)\\n#5 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/ControllerDispatcher.php(45): Illuminate\\\\Routing\\\\Controller->callAction('checkout', Array)\\n#6 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Route.php(212): Illuminate\\\\Routing\\\\ControllerDispatcher->dispatch(Object(Illuminate\\\\Routing\\\\Route), Object(App\\\\Http\\\\Controllers\\\\Shared\\\\CheckoutController), 'checkout')\\n#7 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Route.php(169): Illuminate\\\\Routing\\\\Route->runController()\\n#8 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Router.php(665): Illuminate\\\\Routing\\\\Route->run()\\n#9 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Pipeline.php(30): Illuminate\\\\Routing\\\\Router->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#10 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Middleware\\\/SubstituteBindings.php(41): Illuminate\\\\Routing\\\\Pipeline->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#11 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Pipeline\\\/Pipeline.php(151): Illuminate\\\\Routing\\\\Middleware\\\\SubstituteBindings->handle(Object(Illuminate\\\\Http\\\\Request), Object(Closure))\\n#12 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Pipeline.php(53): Illuminate\\\\Pipeline\\\\Pipeline->Illuminate\\\\Pipeline\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#13 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Middleware\\\/ThrottleRequests.php(57): Illuminate\\\\Routing\\\\Pipeline->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#14 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Pipeline\\\/Pipeline.php(151): Illuminate\\\\Routing\\\\Middleware\\\\ThrottleRequests->handle(Object(Illuminate\\\\Http\\\\Request), Object(Closure), 60, '1')\\n#15 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Pipeline.php(53): Illuminate\\\\Pipeline\\\\Pipeline->Illuminate\\\\Pipeline\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#16 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Pipeline\\\/Pipeline.php(104): Illuminate\\\\Routing\\\\Pipeline->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#17 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Router.php(667): Illuminate\\\\Pipeline\\\\Pipeline->then(Object(Closure))\\n#18 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Router.php(642): Illuminate\\\\Routing\\\\Router->runRouteWithinStack(Object(Illuminate\\\\Routing\\\\Route), Object(Illuminate\\\\Http\\\\Request))\\n#19 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Router.php(608): Illuminate\\\\Routing\\\\Router->runRoute(Object(Illuminate\\\\Http\\\\Request), Object(Illuminate\\\\Routing\\\\Route))\\n#20 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Router.php(597): Illuminate\\\\Routing\\\\Router->dispatchToRoute(Object(Illuminate\\\\Http\\\\Request))\\n#21 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Foundation\\\/Http\\\/Kernel.php(176): Illuminate\\\\Routing\\\\Router->dispatch(Object(Illuminate\\\\Http\\\\Request))\\n#22 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Pipeline.php(30): Illuminate\\\\Foundation\\\\Http\\\\Kernel->Illuminate\\\\Foundation\\\\Http\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#23 \\\/var\\\/app\\\/current\\\/vendor\\\/barryvdh\\\/laravel-debugbar\\\/src\\\/Middleware\\\/InjectDebugbar.php(65): Illuminate\\\\Routing\\\\Pipeline->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#24 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Pipeline\\\/Pipeline.php(151): Barryvdh\\\\Debugbar\\\\Middleware\\\\InjectDebugbar->handle(Object(Illuminate\\\\Http\\\\Request), Object(Closure))\\n#25 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Pipeline.php(53): Illuminate\\\\Pipeline\\\\Pipeline->Illuminate\\\\Pipeline\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#26 \\\/var\\\/app\\\/current\\\/vendor\\\/barryvdh\\\/laravel-cors\\\/src\\\/HandleCors.php(36): Illuminate\\\\Routing\\\\Pipeline->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#27 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Pipeline\\\/Pipeline.php(151): Barryvdh\\\\Cors\\\\HandleCors->handle(Object(Illuminate\\\\Http\\\\Request), Object(Closure))\\n#28 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Pipeline.php(53): Illuminate\\\\Pipeline\\\\Pipeline->Illuminate\\\\Pipeline\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#29 \\\/var\\\/app\\\/current\\\/vendor\\\/fideloper\\\/proxy\\\/src\\\/TrustProxies.php(57): Illuminate\\\\Routing\\\\Pipeline->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#30 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Pipeline\\\/Pipeline.php(151): Fideloper\\\\Proxy\\\\TrustProxies->handle(Object(Illuminate\\\\Http\\\\Request), Object(Closure))\\n#31 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Pipeline.php(53): Illuminate\\\\Pipeline\\\\Pipeline->Illuminate\\\\Pipeline\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#32 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Foundation\\\/Http\\\/Middleware\\\/TransformsRequest.php(31): Illuminate\\\\Routing\\\\Pipeline->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#33 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Pipeline\\\/Pipeline.php(151): Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest->handle(Object(Illuminate\\\\Http\\\\Request), Object(Closure))\\n#34 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Pipeline.php(53): Illuminate\\\\Pipeline\\\\Pipeline->Illuminate\\\\Pipeline\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#35 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Foundation\\\/Http\\\/Middleware\\\/TransformsRequest.php(31): Illuminate\\\\Routing\\\\Pipeline->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#36 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Pipeline\\\/Pipeline.php(151): Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\TransformsRequest->handle(Object(Illuminate\\\\Http\\\\Request), Object(Closure))\\n#37 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Pipeline.php(53): Illuminate\\\\Pipeline\\\\Pipeline->Illuminate\\\\Pipeline\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#38 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Foundation\\\/Http\\\/Middleware\\\/ValidatePostSize.php(27): Illuminate\\\\Routing\\\\Pipeline->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#39 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Pipeline\\\/Pipeline.php(151): Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\ValidatePostSize->handle(Object(Illuminate\\\\Http\\\\Request), Object(Closure))\\n#40 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Pipeline.php(53): Illuminate\\\\Pipeline\\\\Pipeline->Illuminate\\\\Pipeline\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#41 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Foundation\\\/Http\\\/Middleware\\\/CheckForMaintenanceMode.php(62): Illuminate\\\\Routing\\\\Pipeline->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#42 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Pipeline\\\/Pipeline.php(151): Illuminate\\\\Foundation\\\\Http\\\\Middleware\\\\CheckForMaintenanceMode->handle(Object(Illuminate\\\\Http\\\\Request), Object(Closure))\\n#43 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Routing\\\/Pipeline.php(53): Illuminate\\\\Pipeline\\\\Pipeline->Illuminate\\\\Pipeline\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#44 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Pipeline\\\/Pipeline.php(104): Illuminate\\\\Routing\\\\Pipeline->Illuminate\\\\Routing\\\\{closure}(Object(Illuminate\\\\Http\\\\Request))\\n#45 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Foundation\\\/Http\\\/Kernel.php(151): Illuminate\\\\Pipeline\\\\Pipeline->then(Object(Closure))\\n#46 \\\/var\\\/app\\\/current\\\/vendor\\\/laravel\\\/framework\\\/src\\\/Illuminate\\\/Foundation\\\/Http\\\/Kernel.php(116): Illuminate\\\\Foundation\\\\Http\\\\Kernel->sendRequestThroughRouter(Object(Illuminate\\\\Http\\\\Request))\\n#47 \\\/var\\\/app\\\/current\\\/public\\\/index.php(55): Illuminate\\\\Foundation\\\\Http\\\\Kernel->handle(Object(Illuminate\\\\Http\\\\Request))\\n#48 {main}\"}","message_html":null,"is_string":false,"label":"error","time":1541765050.699107,"collector":"log"}]},"time":{"start":1541765046.983,"end":1541765051.655261,"duration":4.672260999679565,"duration_str":"4.67s","measures":[{"label":"Booting","start":1541765046.983,"relative_start":0,"end":1541765048.894562,"relative_end":1541765048.894562,"duration":1.9115619659423828,"duration_str":"1.91s","params":[],"collector":null},{"label":"Application","start":1541765048.89498,"relative_start":1.9119799137115479,"end":1541765051.655275,"relative_end":1.4066696166992188e-5,"duration":2.7602951526641846,"duration_str":"2.76s","params":[],"collector":null}]},"memory":{"peak_usage":4244160,"peak_usage_str":"4.05MB"},"exceptions":{"count":0,"exceptions":[]},"views":{"nb_templates":0,"templates":[]},"route":{"uri":"POST api\/checkout","middleware":"api","controller":"App\\Http\\Controllers\\Shared\\CheckoutController@checkout","namespace":"App\\Http\\Controllers","prefix":"api","where":[],"file":"app\/Http\/Controllers\/Shared\/CheckoutController.php:41-126"},"queries":{"nb_statements":4,"nb_failed_statements":0,"accumulated_duration":0.23164,"accumulated_duration_str":"231.64ms","statements":[{"sql":"Begin Transaction","type":"transaction","params":[],"bindings":[],"hints":null,"backtrace":[{"index":7,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Support\/Facades\/Facade.php","line":223},{"index":8,"namespace":null,"name":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php","line":73},{"index":11,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php","line":45},{"index":12,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":212},{"index":13,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":169},{"index":14,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":665},{"index":15,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":16,"namespace":"middleware","name":"bindings","line":41},{"index":17,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":18,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":19,"namespace":"middleware","name":"throttle","line":57},{"index":20,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":21,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":22,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":104},{"index":23,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":667},{"index":24,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":642},{"index":25,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":608},{"index":26,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":597},{"index":27,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php","line":176},{"index":28,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":30,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":31,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":32,"namespace":null,"name":"\/vendor\/barryvdh\/laravel-cors\/src\/HandleCors.php","line":36},{"index":33,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":34,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":35,"namespace":null,"name":"\/vendor\/fideloper\/proxy\/src\/TrustProxies.php","line":57},{"index":36,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":37,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":38,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31},{"index":39,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":40,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":41,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31},{"index":42,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":43,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":44,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/ValidatePostSize.php","line":27},{"index":45,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":46,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":47,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/CheckForMaintenanceMode.php","line":62},{"index":48,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":49,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53}],"duration":0,"duration_str":"","stmt_id":"\/vendor\/laravel\/framework\/src\/Illuminate\/Support\/Facades\/Facade.php:223","connection":"mtghv400"},{"sql":"select count(*) as aggregate from `sales_invoices` where `code` = 'B18110942258'","type":"query","params":[],"bindings":["B18110942258"],"hints":[],"backtrace":[{"index":15,"namespace":null,"name":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php","line":237},{"index":16,"namespace":null,"name":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php","line":83},{"index":19,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php","line":45},{"index":20,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":212},{"index":21,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":169},{"index":22,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":665},{"index":23,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":24,"namespace":"middleware","name":"bindings","line":41},{"index":25,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":26,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":27,"namespace":"middleware","name":"throttle","line":57},{"index":28,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":29,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":30,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":104},{"index":31,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":667},{"index":32,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":642},{"index":33,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":608},{"index":34,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":597},{"index":35,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php","line":176},{"index":36,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":38,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":39,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":40,"namespace":null,"name":"\/vendor\/barryvdh\/laravel-cors\/src\/HandleCors.php","line":36},{"index":41,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":42,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":43,"namespace":null,"name":"\/vendor\/fideloper\/proxy\/src\/TrustProxies.php","line":57},{"index":44,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":45,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":46,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31},{"index":47,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":48,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":49,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31}],"duration":0.11109000000000001,"duration_str":"111.09ms","stmt_id":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php:237","connection":"mtghv400"},{"sql":"insert into `sales_invoices` (`vendor_id`, `customer_id`, `customer_name`, `customer_phone`, `customer_email`, `group`, `code`, `payment_method`, `platform`, `device`, `updated_at`, `created_at`) values ('1', '', 'Bako Ambrose', '0557484181', 'bakoambrose@gmail.com', 'bus', 'B18110942258', 'momo:mtn', '0', '0', '2018-11-09 12:04:09', '2018-11-09 12:04:09')","type":"query","params":[],"bindings":["1","","Bako Ambrose","0557484181","bakoambrose@gmail.com","bus","B18110942258","momo:mtn","0","0","2018-11-09 12:04:09","2018-11-09 12:04:09"],"hints":[],"backtrace":[{"index":15,"namespace":null,"name":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php","line":87},{"index":18,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php","line":45},{"index":19,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":212},{"index":20,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":169},{"index":21,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":665},{"index":22,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":23,"namespace":"middleware","name":"bindings","line":41},{"index":24,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":25,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":26,"namespace":"middleware","name":"throttle","line":57},{"index":27,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":28,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":29,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":104},{"index":30,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":667},{"index":31,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":642},{"index":32,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":608},{"index":33,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":597},{"index":34,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php","line":176},{"index":35,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":37,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":38,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":39,"namespace":null,"name":"\/vendor\/barryvdh\/laravel-cors\/src\/HandleCors.php","line":36},{"index":40,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":41,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":42,"namespace":null,"name":"\/vendor\/fideloper\/proxy\/src\/TrustProxies.php","line":57},{"index":43,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":44,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":45,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31},{"index":46,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":47,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":48,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31},{"index":49,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151}],"duration":0.00671,"duration_str":"6.71ms","stmt_id":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php:87","connection":"mtghv400"},{"sql":"insert into `sales_tickets` (`invoice_id`, `code`, `class`, `price`, `seat`, `charges_applied`, `discounts_applied`, `date`, `time`, `venue`, `updated_at`, `created_at`) values ('2', '7ED6-690C', 'VIP', '211.00', '1', '0', '0', '2018-11-11', '20:15:00', '20:15:00', '2018-11-09 12:04:10', '2018-11-09 12:04:10')","type":"query","params":[],"bindings":["2","7ED6-690C","VIP","211.00","1","0","0","2018-11-11","20:15:00","20:15:00","2018-11-09 12:04:10","2018-11-09 12:04:10"],"hints":[],"backtrace":[{"index":15,"namespace":null,"name":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php","line":166},{"index":16,"namespace":null,"name":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php","line":94},{"index":19,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php","line":45},{"index":20,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":212},{"index":21,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":169},{"index":22,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":665},{"index":23,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":24,"namespace":"middleware","name":"bindings","line":41},{"index":25,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":26,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":27,"namespace":"middleware","name":"throttle","line":57},{"index":28,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":29,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":30,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":104},{"index":31,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":667},{"index":32,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":642},{"index":33,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":608},{"index":34,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":597},{"index":35,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php","line":176},{"index":36,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":38,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":39,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":40,"namespace":null,"name":"\/vendor\/barryvdh\/laravel-cors\/src\/HandleCors.php","line":36},{"index":41,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":42,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":43,"namespace":null,"name":"\/vendor\/fideloper\/proxy\/src\/TrustProxies.php","line":57},{"index":44,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":45,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":46,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31},{"index":47,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":48,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":49,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31}],"duration":0.00262,"duration_str":"2.62ms","stmt_id":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php:166","connection":"mtghv400"},{"sql":"insert into `sales_ticket_meta` (`ticket_id`, `name`, `value`, `created_at`, `updated_at`) values ('2', 'company_id', '1', '2018-11-09 12:04:10', '2018-11-09 12:04:10')","type":"query","params":[],"bindings":["2","company_id","1","2018-11-09 12:04:10","2018-11-09 12:04:10"],"hints":[],"backtrace":[{"index":13,"namespace":null,"name":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php","line":192},{"index":14,"namespace":null,"name":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php","line":94},{"index":17,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php","line":45},{"index":18,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":212},{"index":19,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":169},{"index":20,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":665},{"index":21,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":22,"namespace":"middleware","name":"bindings","line":41},{"index":23,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":24,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":25,"namespace":"middleware","name":"throttle","line":57},{"index":26,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":27,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":28,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":104},{"index":29,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":667},{"index":30,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":642},{"index":31,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":608},{"index":32,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":597},{"index":33,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php","line":176},{"index":34,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":36,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":37,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":38,"namespace":null,"name":"\/vendor\/barryvdh\/laravel-cors\/src\/HandleCors.php","line":36},{"index":39,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":40,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":41,"namespace":null,"name":"\/vendor\/fideloper\/proxy\/src\/TrustProxies.php","line":57},{"index":42,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":43,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":44,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31},{"index":45,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":46,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":47,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31},{"index":48,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":49,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53}],"duration":0.11122,"duration_str":"111.22ms","stmt_id":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php:192","connection":"mtghv400"},{"sql":"Rollback Transaction","type":"transaction","params":[],"bindings":[],"hints":null,"backtrace":[{"index":7,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Support\/Facades\/Facade.php","line":223},{"index":8,"namespace":null,"name":"\/app\/Http\/Controllers\/Shared\/CheckoutController.php","line":118},{"index":11,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php","line":45},{"index":12,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":212},{"index":13,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":169},{"index":14,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":665},{"index":15,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":16,"namespace":"middleware","name":"bindings","line":41},{"index":17,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":18,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":19,"namespace":"middleware","name":"throttle","line":57},{"index":20,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":21,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":22,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":104},{"index":23,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":667},{"index":24,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":642},{"index":25,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":608},{"index":26,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":597},{"index":27,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php","line":176},{"index":28,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":30},{"index":30,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":31,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":32,"namespace":null,"name":"\/vendor\/barryvdh\/laravel-cors\/src\/HandleCors.php","line":36},{"index":33,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":34,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":35,"namespace":null,"name":"\/vendor\/fideloper\/proxy\/src\/TrustProxies.php","line":57},{"index":36,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":37,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":38,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31},{"index":39,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":40,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":41,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php","line":31},{"index":42,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":43,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":44,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/ValidatePostSize.php","line":27},{"index":45,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":46,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53},{"index":47,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/CheckForMaintenanceMode.php","line":62},{"index":48,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":151},{"index":49,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Pipeline.php","line":53}],"duration":0,"duration_str":"","stmt_id":"\/vendor\/laravel\/framework\/src\/Illuminate\/Support\/Facades\/Facade.php:223","connection":"mtghv400"}]},"swiftmailer_mails":{"count":0,"mails":[]},"auth":{"guards":{"web":"array:2 [\n  \"name\" => \"Guest\"\n  \"user\" => array:1 [\n    \"guest\" => true\n  ]\n]","api":"array:2 [\n  \"name\" => \"Guest\"\n  \"user\" => array:1 [\n    \"guest\" => true\n  ]\n]"},"names":""},"gate":{"count":0,"messages":[]},"session":{"_token":"zCeAFK1ZhHdBzYdz7x2RSVpKCR1thzSuLST09nY8","PHPDEBUGBAR_STACK_DATA":"[]"},"request":{"format":"html","content_type":"text\/html; charset=UTF-8","status_text":"OK","status_code":"200","request_query":"[]","request_request":"array:6 [\n  \"tickets\" => array:1 [\n    0 => array:2 [\n      \"id\" => \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwczpcL1wvbXl0aWNrZXRnaC5jb20iLCJhdWQiOiJodHRwczpcL1wvbXl0aWNrZXRnaC5jb20iLCJpYXQiOjE1NDE3NjM1MjEsIm5iZiI6MTU0MTc2MzUyNiwiZXhwIjoxNTQxNzY1MzIxLCJjbGFpbXMiOnsiaWQiOjcsInRlcm1pbmFsX2lkIjoyLCJyb3V0ZV9pZCI6MiwiZnJvbSI6IkFjY3JhIiwidG8iOiJUYW1hbGUiLCJjbGFzcyI6IlZJUCIsImZhcmUiOiIyMTEuMDAiLCJkZXBhcnR1cmVfZGF0ZSI6IjIwMTgtMTEtMTEiLCJkZXBhcnR1cmVfdGltZSI6IjIwOjE1OjAwIiwiY2hhcmdlc19hcHBsaWVkIjowLCJkaXNjb3VudHNfYXBwbGllZCI6MH19.Xhfg3R3GxiQ5NcWMyFZGB07VufM0JJB_X21KA9EzIRc\"\n      \"seat\" => \"1\"\n    ]\n  ]\n  \"extras\" => array:1 [\n    0 => array:2 [\n      \"id\" => \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwczpcL1wvbXl0aWNrZXRnaC5jb20iLCJhdWQiOiJodHRwczpcL1wvbXl0aWNrZXRnaC5jb20iLCJpYXQiOjE1NDE3NjM1MzYsIm5iZiI6MTU0MTc2MzU0MSwiZXhwIjoxNTQxNzY1MzM2LCJjbGFpbXMiOnsiaWQiOjExLCJpdGVtIjoiQmFncyIsInByaWNlIjoiOTM3LjAwIiwidGVybWluYWxfaWQiOjIsInJvdXRlX2lkIjoyLCJwaWNrdXBfcG9pbnQiOiJWSVAgVHJhbnNwb3J0IFNlcnZpY2VzIC0gQ2lyY2xlIiwicGlja3VwX3RpbWUiOiIyMDE4LTExLTExMjA6MDA6MDAifX0.f6TDYHJjK53H5w_cDxFbD7cjf9uk5MzeFw49ttTQU64\"\n      \"quantity\" => \"1\"\n    ]\n  ]\n  \"payment\" => array:2 [\n    \"type\" => \"momo:mtn\"\n    \"mobileMoneyNo\" => \"0557484181\"\n  ]\n  \"customer\" => array:3 [\n    \"fullname\" => \"Bako Ambrose\"\n    \"phone\" => \"0557484181\"\n    \"email\" => \"bakoambrose@gmail.com\"\n  ]\n  \"meta\" => array:3 [\n    \"type\" => \"bus\"\n    \"app\" => \"android\"\n    \"timestamp\" => \"1541763645\"\n  ]\n  \"client\" => \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwczpcL1wvbXl0aWNrZXRnaC5jb20iLCJhdWQiOiJodHRwczpcL1wvbXl0aWNrZXRnaC5jb20iLCJpYXQiOjE1NDE3NjM0ODUsIm5iZiI6MTU0MTc2MzQ5NSwiZXhwIjoxNTQxNzY1Mjg1LCJjbGFpbXMiOnsiaWQiOjEsImFsaWFzIjoidmlwIn19.yCrAb0WjZNPteKYU1z-XMyTrClDcNuUZv_gZaqaHRvM\"\n]","request_headers":"array:9 [\n  \"content-type\" => array:1 [\n    0 => \"application\/json\"\n  ]\n  \"cache-control\" => array:1 [\n    0 => \"no-cache\"\n  ]\n  \"postman-token\" => array:1 [\n    0 => \"9641450e-d39f-4083-8a20-564cddac12fb\"\n  ]\n  \"user-agent\" => array:1 [\n    0 => \"PostmanRuntime\/7.4.0\"\n  ]\n  \"accept\" => array:1 [\n    0 => \"*\/*\"\n  ]\n  \"host\" => array:1 [\n    0 => \"myticketgh.net\"\n  ]\n  \"accept-encoding\" => array:1 [\n    0 => \"gzip, deflate\"\n  ]\n  \"content-length\" => array:1 [\n    0 => \"1546\"\n  ]\n  \"connection\" => array:1 [\n    0 => \"keep-alive\"\n  ]\n]","request_server":"array:100 [\n  \"REDIRECT_APP_ENV\" => \"local\"\n  \"REDIRECT_DB_PORT\" => \"3306\"\n  \"REDIRECT_APP_NAME\" => \"myTicketGH\"\n  \"REDIRECT_SESSION_LIFETIME\" => \"120\"\n  \"REDIRECT_APP_KEY\" => \"******\"\n  \"REDIRECT_QUEUE_DRIVER\" => \"database\"\n  \"REDIRECT_SESSION_DRIVER\" => \"file\"\n  \"REDIRECT_DB_USERNAME\" => \"Have5aith\"\n  \"REDIRECT_REDIS_PORT\" => \"6379\"\n  \"REDIRECT_FCM_SERVER_KEY\" => \"******\"\n  \"REDIRECT_DB_CONNECTION\" => \"mysql\"\n  \"REDIRECT_APP_URL\" => \"https:\/\/myticketgh.net\"\n  \"REDIRECT_APP_DEBUG\" => \"true\"\n  \"REDIRECT_SES_KEY\" => \"******\"\n  \"REDIRECT_REDIS_HOST\" => \"dev-redis-server-1.tyqrt5.ng.0001.usw2.cache.amazonaws.com\"\n  \"REDIRECT_DB_HOST\" => \"myticketgh-db-1.cmhjt4x5auo2.us-west-2.rds.amazonaws.com\"\n  \"REDIRECT_SES_SECRET\" => \"******\"\n  \"REDIRECT_FCM_SENDER_ID\" => \"315431686722\"\n  \"REDIRECT_LOG_CHANNEL\" => \"stack\"\n  \"REDIRECT_FB_DATABASE_KEY\" => \"******\"\n  \"REDIRECT_SES_REGION\" => \"us-west-2\"\n  \"REDIRECT_BROADCAST_DRIVER\" => \"log\"\n  \"REDIRECT_CACHE_DRIVER\" => \"file\"\n  \"REDIRECT_DB_DATABASE\" => \"mtghv400\"\n  \"REDIRECT_DB_PASSWORD\" => \"******\"\n  \"REDIRECT_PHP_MEMORY_LIMIT\" => \"256M\"\n  \"REDIRECT_PHP_MAX_EXECUTION_TIME\" => \"60\"\n  \"REDIRECT_PHP_DISPLAY_ERRORS\" => \"Off\"\n  \"REDIRECT_PHP_COMPOSER_OPTIONS\" => \"\"\n  \"REDIRECT_PHP_ALLOW_URL_FOPEN\" => \"On\"\n  \"REDIRECT_PHP_ZLIB_OUTPUT_COMPRESSION\" => \"Off\"\n  \"REDIRECT_PHP_DOCUMENT_ROOT\" => \"\/public\"\n  \"REDIRECT_PHP_DATE_TIMEZONE\" => \"UTC\"\n  \"REDIRECT_STATUS\" => \"200\"\n  \"APP_ENV\" => \"local\"\n  \"DB_PORT\" => \"3306\"\n  \"APP_NAME\" => \"myTicketGH\"\n  \"SESSION_LIFETIME\" => \"120\"\n  \"APP_KEY\" => \"******\"\n  \"QUEUE_DRIVER\" => \"database\"\n  \"SESSION_DRIVER\" => \"file\"\n  \"DB_USERNAME\" => \"Have5aith\"\n  \"REDIS_PORT\" => \"6379\"\n  \"FCM_SERVER_KEY\" => \"******\"\n  \"DB_CONNECTION\" => \"mysql\"\n  \"APP_URL\" => \"https:\/\/myticketgh.net\"\n  \"APP_DEBUG\" => \"true\"\n  \"SES_KEY\" => \"******\"\n  \"REDIS_HOST\" => \"dev-redis-server-1.tyqrt5.ng.0001.usw2.cache.amazonaws.com\"\n  \"DB_HOST\" => \"myticketgh-db-1.cmhjt4x5auo2.us-west-2.rds.amazonaws.com\"\n  \"SES_SECRET\" => \"******\"\n  \"FCM_SENDER_ID\" => \"315431686722\"\n  \"LOG_CHANNEL\" => \"stack\"\n  \"FB_DATABASE_KEY\" => \"******\"\n  \"SES_REGION\" => \"us-west-2\"\n  \"BROADCAST_DRIVER\" => \"log\"\n  \"CACHE_DRIVER\" => \"file\"\n  \"DB_DATABASE\" => \"mtghv400\"\n  \"DB_PASSWORD\" => \"******\"\n  \"PHP_MEMORY_LIMIT\" => \"256M\"\n  \"PHP_MAX_EXECUTION_TIME\" => \"60\"\n  \"PHP_DISPLAY_ERRORS\" => \"Off\"\n  \"PHP_COMPOSER_OPTIONS\" => \"\"\n  \"PHP_ALLOW_URL_FOPEN\" => \"On\"\n  \"PHP_ZLIB_OUTPUT_COMPRESSION\" => \"Off\"\n  \"PHP_DOCUMENT_ROOT\" => \"\/public\"\n  \"PHP_DATE_TIMEZONE\" => \"UTC\"\n  \"CONTENT_TYPE\" => \"application\/json\"\n  \"HTTP_CACHE_CONTROL\" => \"no-cache\"\n  \"HTTP_POSTMAN_TOKEN\" => \"9641450e-d39f-4083-8a20-564cddac12fb\"\n  \"HTTP_USER_AGENT\" => \"PostmanRuntime\/7.4.0\"\n  \"HTTP_ACCEPT\" => \"*\/*\"\n  \"HTTP_HOST\" => \"myticketgh.net\"\n  \"HTTP_ACCEPT_ENCODING\" => \"gzip, deflate\"\n  \"CONTENT_LENGTH\" => \"1546\"\n  \"HTTP_CONNECTION\" => \"keep-alive\"\n  \"PATH\" => \"\/usr\/local\/sbin:\/usr\/local\/bin:\/usr\/bin:\/usr\/sbin:\/sbin:\/bin\"\n  \"SERVER_SIGNATURE\" => \"\"\n  \"SERVER_SOFTWARE\" => \"Apache\"\n  \"SERVER_NAME\" => \"myticketgh.net\"\n  \"SERVER_ADDR\" => \"172.31.27.16\"\n  \"SERVER_PORT\" => \"80\"\n  \"REMOTE_ADDR\" => \"154.160.1.96\"\n  \"DOCUMENT_ROOT\" => \"\/var\/www\/html\/public\"\n  \"REQUEST_SCHEME\" => \"http\"\n  \"CONTEXT_PREFIX\" => \"\"\n  \"CONTEXT_DOCUMENT_ROOT\" => \"\/var\/www\/html\/public\"\n  \"SERVER_ADMIN\" => \"root@localhost\"\n  \"SCRIPT_FILENAME\" => \"\/var\/www\/html\/public\/index.php\"\n  \"REMOTE_PORT\" => \"37559\"\n  \"REDIRECT_URL\" => \"\/api\/checkout\"\n  \"GATEWAY_INTERFACE\" => \"CGI\/1.1\"\n  \"SERVER_PROTOCOL\" => \"HTTP\/1.1\"\n  \"REQUEST_METHOD\" => \"POST\"\n  \"QUERY_STRING\" => \"\"\n  \"REQUEST_URI\" => \"\/api\/checkout\"\n  \"SCRIPT_NAME\" => \"\/index.php\"\n  \"PHP_SELF\" => \"\/index.php\"\n  \"REQUEST_TIME_FLOAT\" => 1541765046.983\n  \"REQUEST_TIME\" => 1541765046\n]","request_cookies":"[]","response_headers":"array:5 [\n  \"cache-control\" => array:1 [\n    0 => \"no-cache, private\"\n  ]\n  \"date\" => array:1 [\n    0 => \"Fri, 09 Nov 2018 12:04:10 GMT\"\n  ]\n  \"content-type\" => array:1 [\n    0 => \"text\/html; charset=UTF-8\"\n  ]\n  \"x-ratelimit-limit\" => array:1 [\n    0 => 60\n  ]\n  \"x-ratelimit-remaining\" => array:1 [\n    0 => 59\n  ]\n]","path_info":"\/api\/checkout","session_attributes":"array:2 [\n  \"_token\" => \"zCeAFK1ZhHdBzYdz7x2RSVpKCR1thzSuLST09nY8\"\n  \"PHPDEBUGBAR_STACK_DATA\" => []\n]"}}, "X4e3de877dfdc7e1e4a47fd3ed2bd6f31");
  72.  
  73. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement