35-multiple-cars-motivation.bezkarbonu-order-form-laravel.vps.involve.cz Open in urlscan Pro
77.93.208.80  Public Scan

URL: https://35-multiple-cars-motivation.bezkarbonu-order-form-laravel.vps.involve.cz/
Submission: On July 02 via api from US — Scanned from DE

Form analysis 2 forms found in the DOM

<form wire:submit="save">
  <nav class="nav">
    <ul class="stepper">
      <!--[if BLOCK]><![endif]-->
      <li class="is-active">
        <a wire:click="setStep(0)" class="stepper__link color--black" title="Termín">
        <strong class="text--medium">Termín</strong>
    </a>
      </li>
      <li>
        <a wire:click="setStep(1)" class="stepper__link color--black" title="Kontaktní údaje">
        <strong class="text--medium">Kontaktní údaje</strong>
    </a>
      </li>
      <li>
        <a wire:click="setStep(2)" class="stepper__link color--black" title="Dokončení">
        <strong class="text--medium">Dokončení</strong>
    </a>
      </li>
      <!--[if ENDBLOCK]><![endif]-->
    </ul>
  </nav>
  <div class="container p-4 mx-auto">
    <fieldset class="margin-bottom-1 medium-margin-bottom-2">
      <div class="grid-x" x-data="{ showMultipleCarMotivation: true }">
        <div class="cell">
          <div class="form__group form__group--row margin-bottom-1">
            <label for="branch" class="large-text-right margin-right-1"> Vyberte pobočku <span class="color--primary">*</span>
            </label>
            <div class="form__item">
              <select wire:model.change="state.branch" name="branch" id="branch" class="select">
                <option value="">Vyberte</option>
                <!--[if BLOCK]><![endif]-->
                <option value="1">Krnov</option>
                <option value="2">Třebíč</option>
                <option value="3">Litoměřice</option>
                <!--[if ENDBLOCK]><![endif]-->
              </select>
              <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
            </div>
          </div>
        </div>
        <div class="cell">
          <div class="form__group form__group--row margin-bottom-1">
            <label for="branch" class="large-text-right margin-right-1"> Zvolte počet aut <span class="color--primary">*</span>
            </label>
            <div class="form__item">
              <div class="incrementer">
                <input wire:model.live.debounce.500ms="state.carCount" type="number" name="carCount" id="carCount" class="input text-center" min="1">
                <div class="incrementer__controls">
                  <button class="button" type="button" wire:click="decrementCars">
                    <svg class="icon" role="presentation" width="20" height="20">
                      <use xlink:href="https://35-multiple-cars-motivation.bezkarbonu-order-form-laravel.vps.involve.cz/assets/img/icons/sprite.svg#sprite-minus"></use>
                    </svg>
                  </button>
                  <button class="button" type="button" wire:click="incrementCars" x-on:click="showMultipleCarMotivation = false">
                    <svg class="icon" role="presentation" width="20" height="20">
                      <use xlink:href="https://35-multiple-cars-motivation.bezkarbonu-order-form-laravel.vps.involve.cz/assets/img/icons/sprite.svg#sprite-plus"></use>
                    </svg>
                  </button>
                </div>
              </div>
              <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
            </div>
          </div>
        </div>
        <!--[if BLOCK]><![endif]-->
        <div class="cell">
          <div class="form__group form__group--row margin-bottom-1">
            <label for="car1" class="large-text-right margin-right-1">
              <span class="color--primary">1.</span> Objem motoru <span class="color--primary">*</span>
            </label>
            <div class="form__item form__item--volume">
              <div class="volume" data-placeholder="cm³" style="max-width: 8rem;">
                <input wire:model.change="state.cars.1" type="number" name="cars" class="input" min="1" id="car1">
                <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
              </div>
              <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
              <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
            </div>
          </div>
        </div>
        <!--[if ENDBLOCK]><![endif]-->
        <div class="cell" x-show="showMultipleCarMotivation">
          <div class="callout warning">
            <p class="color--warning text--12">
              <strong>Přijeďte spolu s kámošem nebo manželkou a oba dostanete -20% 😵</strong>
            </p>
          </div>
        </div>
        <div class="cell">
          <div class="form__group form__group--row margin-bottom-1">
            <label for="services" class="large-text-right margin-right-1"> O jakou službu máte zájem? <span class="color--primary">*</span>
            </label>
            <div class="form__item">
              <select wire:model.change="state.services" name="services" id="services" class="select" required="">
                <!--[if BLOCK]><![endif]-->
                <option value="1">Služba B2C</option>
                <option value="2">Služba B2B</option>
                <option value="3">Služba B2H</option>
                <!--[if ENDBLOCK]><![endif]-->
              </select>
              <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
              <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
            </div>
          </div>
        </div>
        <div class="cell">
          <div class="form__group form__group--row margin-bottom-1">
            <label for="date" class="large-text-right margin-right-1"> Datum <span class="color--primary">*</span>
            </label>
            <div class="form__item" style="max-width: 15rem;">
              <input x-init="new Datepicker($el, {
                          language: 'cs',
                          format: 'dd.mm.yyyy',
                          autohide: true,
                          minDate: new Date() - 1,
                          container: '#datepicker-order_date'
                        });" wire:ignore="" wire:model="state.order_date" @change-date.camel="$wire.set('state.order_date', $el.value)" class="input input--date js-datepicker datepicker-input" inputmode="none" type="text" name="date" id="date"
                autocomplete="off">
              <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
              <div wire:ignore="" id="datepicker-order_date">
                <div class="datepicker datepicker-dropdown">
                  <div class="datepicker-picker">
                    <div class="datepicker-header">
                      <div class="datepicker-title" style="display: none;"></div>
                      <div class="datepicker-controls"><button type="button" class="button prev-button prev-btn" tabindex="-1" disabled="">«</button><button type="button" class="button view-switch" tabindex="-1">Červenec 2024</button><button
                          type="button" class="button next-button next-btn" tabindex="-1">»</button></div>
                    </div>
                    <div class="datepicker-main">
                      <div class="datepicker-view">
                        <div class="days">
                          <div class="days-of-week"><span class="dow">Po</span><span class="dow">Út</span><span class="dow">St</span><span class="dow">Čt</span><span class="dow">Pá</span><span class="dow">So</span><span class="dow">Ne</span></div>
                          <div class="datepicker-grid"><span data-date="1719784800000" class="datepicker-cell day disabled">1</span><span data-date="1719871200000" class="datepicker-cell day focused">2</span><span data-date="1719957600000"
                              class="datepicker-cell day">3</span><span data-date="1720044000000" class="datepicker-cell day">4</span><span data-date="1720130400000" class="datepicker-cell day">5</span><span data-date="1720216800000"
                              class="datepicker-cell day">6</span><span data-date="1720303200000" class="datepicker-cell day">7</span><span data-date="1720389600000" class="datepicker-cell day">8</span><span data-date="1720476000000"
                              class="datepicker-cell day">9</span><span data-date="1720562400000" class="datepicker-cell day">10</span><span data-date="1720648800000" class="datepicker-cell day">11</span><span data-date="1720735200000"
                              class="datepicker-cell day">12</span><span data-date="1720821600000" class="datepicker-cell day">13</span><span data-date="1720908000000" class="datepicker-cell day">14</span><span data-date="1720994400000"
                              class="datepicker-cell day">15</span><span data-date="1721080800000" class="datepicker-cell day">16</span><span data-date="1721167200000" class="datepicker-cell day">17</span><span data-date="1721253600000"
                              class="datepicker-cell day">18</span><span data-date="1721340000000" class="datepicker-cell day">19</span><span data-date="1721426400000" class="datepicker-cell day">20</span><span data-date="1721512800000"
                              class="datepicker-cell day">21</span><span data-date="1721599200000" class="datepicker-cell day">22</span><span data-date="1721685600000" class="datepicker-cell day">23</span><span data-date="1721772000000"
                              class="datepicker-cell day">24</span><span data-date="1721858400000" class="datepicker-cell day">25</span><span data-date="1721944800000" class="datepicker-cell day">26</span><span data-date="1722031200000"
                              class="datepicker-cell day">27</span><span data-date="1722117600000" class="datepicker-cell day">28</span><span data-date="1722204000000" class="datepicker-cell day">29</span><span data-date="1722290400000"
                              class="datepicker-cell day">30</span><span data-date="1722376800000" class="datepicker-cell day">31</span><span data-date="1722463200000" class="datepicker-cell day next">1</span><span data-date="1722549600000"
                              class="datepicker-cell day next">2</span><span data-date="1722636000000" class="datepicker-cell day next">3</span><span data-date="1722722400000" class="datepicker-cell day next">4</span><span data-date="1722808800000"
                              class="datepicker-cell day next">5</span><span data-date="1722895200000" class="datepicker-cell day next">6</span><span data-date="1722981600000" class="datepicker-cell day next">7</span><span data-date="1723068000000"
                              class="datepicker-cell day next">8</span><span data-date="1723154400000" class="datepicker-cell day next">9</span><span data-date="1723240800000" class="datepicker-cell day next">10</span><span data-date="1723327200000"
                              class="datepicker-cell day next">11</span></div>
                        </div>
                      </div>
                    </div>
                    <div class="datepicker-footer">
                      <div class="datepicker-controls"><button type="button" class="button today-button today-btn" tabindex="-1" style="display: none;">Dnes</button><button type="button" class="button clear-button clear-btn" tabindex="-1"
                          style="display: none;">Vymazat</button></div>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
        <div class="cell">
          <div class="form__group form__group--row margin-bottom-1">
            <label for="time" class="large-text-right margin-right-1"> Čas <span class="color--primary">*</span>
            </label>
            <div class="form__item">
              <div class="form__times">
                <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
              </div>
              <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
            </div>
          </div>
        </div>
      </div>
    </fieldset>
  </div>
  <fieldset class="margin-bottom-1 medium-margin-bottom-2">
    <div class="form__price">
      <div class="grid-x align-justify align-middle">
        <div class="cell shrink">
          <p class="margin-bottom-0"> Cena dekarbonizace </p>
        </div>
        <div class="cell shrink">
          <div class="text--price">
            <!--[if BLOCK]><![endif]--> <!--[if BLOCK]><![endif]--> 0 Kč <!--[if ENDBLOCK]><![endif]-->
            <!--[if ENDBLOCK]><![endif]-->
          </div>
        </div>
      </div>
    </div>
  </fieldset>
  <fieldset>
    <div class="grid-x grid-margin-x align-justify align-middle margin-bottom-1">
      <!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
      <!--[if BLOCK]><![endif]-->
      <div class="cell shrink" style="margin-left: auto;">
        <button type="button" class="button primary button--full margin-bottom-1" wire:click="goToNextStep" title="Pokračovat"> Pokračovat </button>
      </div>
      <!--[if ENDBLOCK]><![endif]-->
    </div>
    <hr class="margin-bottom-1">
    <div class="grid-x">
      <div class="cell text-center">
        <p class="margin-bottom-0 text--14"> Odesláním souhlasíte se
          <a class="link link--underline color--black" href="https://www.bezkarbonu.cz/wp-content/themes/bezkarbonu/assets/files/2023-09-28_gdpr.pdf" target="_blank">zpracováním osobních údajů</a> a
          <a class="link link--underline color--black" href="https://www.bezkarbonu.cz/wp-content/uploads/2023/12/Pouceni-pro-zakazniky-2023.pdf" target="_blank">poučením pro zákazníky</a>. </p>
      </div>
    </div>
  </fieldset>
</form>

<form><br><b>Filter results</b><br>Method: <select name="method">
    <option></option>
    <option>GET</option>
    <option>POST</option>
    <option>PUT</option>
    <option>DELETE</option>
  </select><br>Uri: <input type="text" name="uri"><br>IP: <input type="text" name="ip"><br><button type="submit">Search</button></form>

Text Content

info@bezkarbonu.cz +420 792 767 337
 * Blog
 * FAQ
 * Zkušenosti
 * Kontakt

 * 
 * 
 * 

 * Zpět na web

 * Blog
 * FAQ
 * Zkušenosti
 * Kontakt

 * 
 * 
 * 


OBJEDNÁVKA

Objednejte si dekarbonizaci ve třech rychlých krocích. Termín máte ihned a
potvrzení objednávky Vám zašleme na e-mail.

   
 * Termín
 * Kontaktní údaje
 * Dokončení
   

Vyberte pobočku *
Vyberte Krnov Třebíč Litoměřice
Zvolte počet aut *

1. Objem motoru *


Přijeďte spolu s kámošem nebo manželkou a oba dostanete -20% 😵

O jakou službu máte zájem? *
Služba B2C Služba B2B Služba B2H
Datum *
«Červenec 2024»
PoÚtStČtPáSoNe
123456789101112131415161718192021222324252627282930311234567891011
DnesVymazat
Čas *


Cena dekarbonizace

0 Kč
Pokračovat

--------------------------------------------------------------------------------

Odesláním souhlasíte se zpracováním osobních údajů a poučením pro zákazníky.

Nevíte si rady? Zavolejte nám a my Vám pomůžeme

+420 792 767 337

--------------------------------------------------------------------------------


 * KROK 1
   
   Nejdříve vyberte pobočku, která je k vám nejblíže. Zvolte objem motoru a
   vyberte si termín, který vám vyhovuje nejvíce. Pokud jste firma nebo chcete,
   abychom přijeli k vám domů, tak nám prosím zavolejte.


 * KROK 2
   
   Poté nám vyplníte Vaše základní údaje, abychom věděli, kdo k nám přijedete a
   komu máme vystavit fakturu.


 * KROK 3
   
   Po zkontrolování všech údajů dokončíte objednávku. A můžete se tak těšit na
   motor Bez Karbonu!

Bezkarbonu.cz

Cookies | GDPR

dev-panel

Useful links
 * Order
 * Cart
 * Homepage

--------------------------------------------------------------------------------


Useful links

TitleLink #Action





--------------------------------------------------------------------------------

  Save

Form fillers
 * test

--------------------------------------------------------------------------------

Shift + f = use default formfiller

--------------------------------------------------------------------------------


Form fillers
test


Form filler titleIs defaultActionDelete form filler

--------------------------------------------------------------------------------

TIP: You can pre fill your page form and then simply pick all the desired inputs
via action buttons bellow. Name and value will be filled automatically.

--------------------------------------------------------------------------------

Name(attribute)Value to fillActions















--------------------------------------------------------------------------------

  Save

User logins
 * Admin
 * Manažer
 * Doktor
 * Log-out

--------------------------------------------------------------------------------

Shift + a = log-in as admin
Shift + k = log-in as customer
Shift + o = log-out

--------------------------------------------------------------------------------


Useful links

Log-in linkLog-out link

--------------------------------------------------------------------------------

TitleUsernamePasswordRedirectad.cu.Action





--------------------------------------------------------------------------------

  Save

Temp / cache cleaner
Delete temp & cache

--------------------------------------------------------------------------------

Shift + t = delete temp / cache

--------------------------------------------------------------------------------


Temp / cache cleaner

Cache cleaner linkReload page

--------------------------------------------------------------------------------

  Save

Help

For random number between 1-10000 in formfillers you can use variable (rand).
e.g: customer(rand)@test.cz

--------------------------------------------------------------------------------

Shift + x = expand / minimalize
Shift + f = use default formfiller
Shift + a = log-in as admin
Shift + o = log-in as customer
Shift + t = clean temp / cache

--------------------------------------------------------------------------------


Help


USEFUL LINKS

 * This section allows you to add links, that you will have easy access to.
 * For example links for pages, that are not in menu, or can be accessed only
   via address bar.


FORM FILLERS

 * This is an easy tool, that allows you to fill forms without need to type
   manually.
 * You can have multiple form fillers for various scenarious, or one form filler
   for whole app.
 * Explanations:
   1. Form filler title - text, that will be shown on button
   2. Is default - when selected, this allows you to use keyboard combo shift +
      f that will perform form filling action of selected form filler
   3. Crosshair icon - this allows you to pick input right from the page, name
      and value will be filled automatically, this way you can prefile whole
      form and then just pick all the desired inputs
   4. Bullseye icon - adds new row and then performs same as Crosshair icon,
      already picked inputs will be colored green


USER LOGINS

 * This section allows you to quickly log in / out without need to do it
   manually.
 * Requires backend logic. Each user login is separate button.
 * Explanations:
   1. Log-in link - link to script, that will handle log-ins
   2. Log-out link - link to script, that will handle log-out
   3. Admin redirect link - link to where will you be redirected when logging as
      admin via keyboard combo shift + a, which user login will be used as admin
      login is determined by checkbox ad. in user login rows
   4. Customer redirect link - link to where will you be redirected when logging
      as customer via keyboard combo shift + k, which user login will be used as
      admin login is determined by checkbox cu. in user login rows


TEMP / CACHE CLEANER

 * This is a simple tool, that allows you delete temporary files or cahce from
   your project without need to do it manually.
 * Requires backend logic. Called via ajax request.
 * Explanations:
   1. Cache cleaner link - link to script, that will delete temp / cache
   2. Reload page - determines, if page will be reloaded after cache is deleted



Messages4TimelineExceptionsViews25RouteQueries13Models20Livewire1MailsGateSessionRequest
Request history#1 / (11:19:53)csLocale8.2.20PHP Version88.54msRequest
Duration3MBMemory UsageGET /Route
 * warninglog[11:19:53] LOG.warning: preg_match(): Passing null to parameter #2
   ($subject) of type string is depr...
 * warninglog[11:19:53] LOG.warning: trim(): Passing null to parameter #1
   ($string) of type string is deprecated ...
 * warninglog[11:19:53] LOG.warning: preg_replace(): Passing null to parameter
   #3 ($subject) of type array|string...
 * warninglog[11:19:53] LOG.warning: preg_replace(): Passing null to parameter
   #3 ($subject) of type array|string...


 * Booting (48.85ms)time
 * Application (39.67ms)time

 * 1 x Booting (55.17%)
   48.85ms
   1 x Application (44.81%)
   39.67ms


25 templates were rendered
 * front::pages.homepage.indexindex.blade.php#?blade
 * front::pages.homepage._sections.herohero.blade.php#?blade
 * front::pages.homepage._sections.orderorder.blade.php#?blade
 * shared::livewire-wizard.wizardwizard.blade.php#?blade
 * shared::livewire-wizard.steps-headersteps-header.blade.php#?blade
 * shared::livewire-wizard.step-headerstep-header.blade.php#?blade
 * shared::livewire-wizard.step-headerstep-header.blade.php#?blade
 * shared::livewire-wizard.step-headerstep-header.blade.php#?blade
 * front::livewire.orderWizard.steps.basic-informationbasic-information.blade.php#?blade
 * shared::livewire-wizard.steps-footersteps-footer.blade.php#?blade
 * front::layouts.mainmain.blade.php#?blade
 * front::layouts._shared.preloadpreload.blade.php#?blade
 * front::layouts._shared.stylesstyles.blade.php#?blade
 * front::layouts._components.metasmetas.blade.php#?blade
 * front::layouts._shared.faviconsfavicons.blade.php#?blade
 * front::layouts._components.headerheader.blade.php#?blade
 * front::layouts._components.secondary-navsecondary-nav.blade.php#?blade
 * front::layouts._shared.socialssocials.blade.php#?blade
 * front::layouts._components.secondary-navsecondary-nav.blade.php#?blade
 * front::layouts._shared.socialssocials.blade.php#?blade
 * front::layouts._components.footerfooter.blade.php#?blade
 * front::layouts._shared.scriptsscripts.blade.php#?blade
 * livewire-alert::components.scriptsscripts.blade.php#?blade
 * livewire-alert::components.flashflash.blade.php#?blade
 * shared::components.dev-paneldev-panel.blade.php#?blade


uriGET
/middlewareweblocalecscontrollerApp\Modules\Front\Http\Controllers\HomepageController@indexascs.front.homepage.indexnamespaceApp\Modules\Front\Http\Controllersprefixwherefileapp/Modules/Front/Http/Controllers/HomepageController.php:10-13
13 statements were executed, 5 of which were duplicates, 8 unique. Show only
duplicated4.79ms
bezkarbonu-order-form-laravel_35-multiple-
 * select `id`, `title` from `branches`
   
   490μsbezkarbonu-order-form-laravel_35-multiple-OrderWizard.php#65
   
   Backtrace
    * 18. app/Modules/Front/Http/Livewire/OrderWizard/OrderWizard.php:65
    * 19. vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36
    * 20. vendor/laravel/framework/src/Illuminate/Container/Util.php:41
    * 21. vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93
    * 22. vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:35

 * select * from `service_types`
   
   300μsbezkarbonu-order-form-laravel_35-multiple-OrderWizard.php#66
   
   Backtrace
    * 16. app/Modules/Front/Http/Livewire/OrderWizard/OrderWizard.php:66
    * 17. vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36
    * 18. vendor/laravel/framework/src/Illuminate/Container/Util.php:41
    * 19. vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93
    * 20. vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:35

 * select * from `services`
   
   340μsbezkarbonu-order-form-laravel_35-multiple-OrderWizard.php#67
   
   Backtrace
    * 16. app/Modules/Front/Http/Livewire/OrderWizard/OrderWizard.php:67
    * 17. vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36
    * 18. vendor/laravel/framework/src/Illuminate/Container/Util.php:41
    * 19. vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93
    * 20. vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:35

 * select * from `service_types` where `slug` = 'B2C' limit 1
   
   330μsbezkarbonu-order-form-laravel_35-multiple-BasicInformation.php#33
   
   Bindings
    * 0: B2C
   
   Backtrace
    * 16. app/Modules/Front/Http/Livewire/OrderWizard/Steps/BasicInformation.php:33
    * 17. vendor/vildanbina/livewire-wizard/src/WizardComponent.php:62
    * 21. vendor/vildanbina/livewire-wizard/src/WizardComponent.php:78
    * 22. vendor/vildanbina/livewire-wizard/src/WizardComponent.php:102
    * 23. vendor/vildanbina/livewire-wizard/src/WizardComponent.php:55

 * select count(*) as aggregate from `order_cars` where `order_cars`.`order_id`
   is null and `order_cars`.`order_id` is not null
   
   340μsbezkarbonu-order-form-laravel_35-multiple-BasicInformation.php#34
   
   Backtrace
    * 19. app/Modules/Front/Http/Livewire/OrderWizard/Steps/BasicInformation.php:34
    * 20. vendor/vildanbina/livewire-wizard/src/WizardComponent.php:62
    * 24. vendor/vildanbina/livewire-wizard/src/WizardComponent.php:78
    * 25. vendor/vildanbina/livewire-wizard/src/WizardComponent.php:102
    * 26. vendor/vildanbina/livewire-wizard/src/WizardComponent.php:55

 * select * from `service_types` where `slug` = 'B2C' limit 1
   
   430μsbezkarbonu-order-form-laravel_35-multiple-basic-information.blade.php#11
   
   Bindings
    * 0: B2C
   
   Backtrace
    * 16. view::front::livewire.orderWizard.steps.basic-information:11
    * 18. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:38
    * 19. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:73
    * 20. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:16
    * 21. vendor/laravel/framework/src/Illuminate/View/View.php:208

 * select * from `services` where `services`.`service_type_id` in (1)
   
   580μsbezkarbonu-order-form-laravel_35-multiple-basic-information.blade.php#11
   
   Backtrace
    * 21. view::front::livewire.orderWizard.steps.basic-information:11
    * 23. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:38
    * 24. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:73
    * 25. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:16
    * 26. vendor/laravel/framework/src/Illuminate/View/View.php:208

 * select * from `service_types` where `slug` = 'B2C' limit 1
   
   330μsbezkarbonu-order-form-laravel_35-multiple-steps-footer.blade.php#21
   
   Bindings
    * 0: B2C
   
   Backtrace
    * 16. view::shared::livewire-wizard.steps-footer:21
    * 18. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:38
    * 19. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:73
    * 20. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:16
    * 21. vendor/laravel/framework/src/Illuminate/View/View.php:208

 * select * from `services` where `services`.`service_type_id` in (1)
   
   440μsbezkarbonu-order-form-laravel_35-multiple-steps-footer.blade.php#21
   
   Backtrace
    * 21. view::shared::livewire-wizard.steps-footer:21
    * 23. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:38
    * 24. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:73
    * 25. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:16
    * 26. vendor/laravel/framework/src/Illuminate/View/View.php:208

 * select * from `analytics` where `code_head_start` is not null
   
   340μsbezkarbonu-order-form-laravel_35-multiple-main.blade.php#9
   
   Backtrace
    * 15. view::front::layouts.main:9
    * 17. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124
    * 18. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
    * 19. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:22
    * 20. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:73

 * select * from `analytics` where `code_head_end` is not null
   
   330μsbezkarbonu-order-form-laravel_35-multiple-main.blade.php#70
   
   Backtrace
    * 15. view::front::layouts.main:70
    * 17. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124
    * 18. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
    * 19. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:22
    * 20. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:73

 * select * from `analytics` where `code_body_start` is not null
   
   260μsbezkarbonu-order-form-laravel_35-multiple-main.blade.php#79
   
   Backtrace
    * 15. view::front::layouts.main:79
    * 17. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124
    * 18. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
    * 19. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:22
    * 20. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:73

 * select * from `analytics` where `code_body_end` is not null
   
   280μsbezkarbonu-order-form-laravel_35-multiple-main.blade.php#94
   
   Backtrace
    * 15. view::front::layouts.main:94
    * 17. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124
    * 18. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
    * 19. vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:22
    * 20. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:73

App\Models\Service11Service.php#?App\Models\ServiceType6ServiceType.php#?App\Models\Branch3Branch.php#?
front::order-wizard.order-wizard #qgOaW29PyuTXj8dj5x0Earray:4 [ "data" =>
array:8 [ "steps" => array:3 [ 0 => "App\Modules\Front\Http\Livewire...


_tokenqeSTY7hb7vKPkgedNiwoU039dyYQU48jJHmqc1EJ_previousarray:1 [ "url" =>
"https://35-multiple-cars-motivation.bezkarbonu-order-form-laravel.vps.involve...._flasharray:2
[ "old" => [] "new" => [] ]PHPDEBUGBAR_STACK_DATA[]
telescopeView in Telescopepath_info/status_code

200


status_textOKformathtmlcontent_typetext/html; charset=UTF-8request_query

[]


request_request

[]


request_headers
  0 of 0       array:14 [▼
  "accept-encoding" => array:1 [▶
    0 => "gzip, deflate, br, zstd"
  ]
  "sec-fetch-dest" => array:1 [▶
    0 => "document"
  ]
  "sec-fetch-user" => array:1 [▶
    0 => "?1"
  ]
  "sec-fetch-mode" => array:1 [▶
    0 => "navigate"
  ]
  "sec-fetch-site" => array:1 [▶
    0 => "none"
  ]
  "accept" => array:1 [▶
    0 => "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"
  ]
  "accept-language" => array:1 [▶
    0 => "de-DE,de;q=0.9;q=0.9"
  ]
  "user-agent" => array:1 [▶
    0 => "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36"
  ]
  "upgrade-insecure-requests" => array:1 [▶
    0 => "1"
  ]
  "sec-ch-ua-platform" => array:1 [▶
    0 => ""Win32""
  ]
  "sec-ch-ua-mobile" => array:1 [▶
    0 => "?0"
  ]
  "sec-ch-ua" => array:1 [▶
    0 => ""Google Chrome";v="126", "Not:A-Brand";v="8", "Chromium";v="126""
  ]
  "connection" => array:1 [▶
    0 => "keep-alive"
  ]
  "host" => array:1 [▶
    0 => "35-multiple-cars-motivation.bezkarbonu-order-form-laravel.vps.involve.cz"
  ]
]


request_cookies

[]


response_headers
  0 of 0       array:7 [▼
  "content-type" => array:1 [▶
    0 => "text/html; charset=UTF-8"
  ]
  "cache-control" => array:1 [▶
    0 => "max-age=0, must-revalidate, no-cache, no-store, private"
  ]
  "date" => array:1 [▶
    0 => "Tue, 02 Jul 2024 09:19:53 GMT"
  ]
  "pragma" => array:1 [▶
    0 => "no-cache"
  ]
  "expires" => array:1 [▶
    0 => "Fri, 01 Jan 1990 00:00:00 GMT"
  ]
  "set-cookie" => array:2 [▶
    0 => "XSRF-TOKEN=eyJpdiI6IlJraGpHa2YybkJEc2Uvdm81NG5iSmc9PSIsInZhbHVlIjoiQnRNWGw2UzFjRGlmS2pSeWx4WVpFNzF1WkFBT1lKQWhoTldSV3lyYkpqWlFHQmhTalVHVWlQbVpLMldDZnNBcFpoQjBRRk5UYVlqN0hZT0hoUGcyVGJjc081SXlpMVJWdHdiZSt2Yk4vS3RXTFRhLzVSN0gwS1dQMXA0VlVUaXciLCJtYWMiOiI0MmViZmEwMjE1ZTk0NjI3ZDVmOTgxNWQwZGYxMWY1YzhkOWE4NDgxY2FiMDU4ZjZhYTc4ZjMzNWM5NTYwOGQxIiwidGFnIjoiIn0%3D; expires=Tue, 02 Jul 2024 11:19:53 GMT; Max-Age=7200; path=/; secure; samesite=lax ◀XSRF-TOKEN=eyJpdiI6IlJraGpHa2YybkJEc2Uvdm81NG5iSmc9PSIsInZhbHVlIjoiQnRNWGw2UzFjRGlmS2pSeWx4WVpFNzF1WkFBT1lKQWhoTldSV3lyYkpqWlFHQmhTalVHVWlQbVpLMldDZnNBcFpoQjBRR ▶"
    1 => "involve_cms_laravel_session=eyJpdiI6InlxcVV3cUNFblJHOWN2dnFLS0llSkE9PSIsInZhbHVlIjoiTTNMWkRjR2Y5NjVoMW5QMW9mNk1rOGN5NFpJMUZxR0h4aGR2RWxIN1AzTUJMWkk2aENkTGVMaTJvbDF4bEZ6blEzWENhNENqd0owRFkwbFMzL20vMnl1Zy9hU3VzdGxFVVZIL28yQnpzQ0RkM3NiL2oxYkNhTFlRZy9vVUF3ZHgiLCJtYWMiOiIxYTAwYjg3MGJmNTQ4ZWU4YTg4ZDNmMDJiM2Q1YTE2MzY2ZmZkYzdmNjRhNmRmMjczYzA2YTZlYmU5ZWIzMzE2IiwidGFnIjoiIn0%3D; expires=Tue, 02 Jul 2024 11:19:53 GMT; Max-Age=7200; path=/; httponly; samesite=lax ◀involve_cms_laravel_session=eyJpdiI6InlxcVV3cUNFblJHOWN2dnFLS0llSkE9PSIsInZhbHVlIjoiTTNMWkRjR2Y5NjVoMW5QMW9mNk1rOGN5NFpJMUZxR0h4aGR2RWxIN1AzTUJMWkk2aENkTGVMaTJv ▶"
  ]
  "Set-Cookie" => array:2 [▶
    0 => "XSRF-TOKEN=eyJpdiI6IlJraGpHa2YybkJEc2Uvdm81NG5iSmc9PSIsInZhbHVlIjoiQnRNWGw2UzFjRGlmS2pSeWx4WVpFNzF1WkFBT1lKQWhoTldSV3lyYkpqWlFHQmhTalVHVWlQbVpLMldDZnNBcFpoQjBRRk5UYVlqN0hZT0hoUGcyVGJjc081SXlpMVJWdHdiZSt2Yk4vS3RXTFRhLzVSN0gwS1dQMXA0VlVUaXciLCJtYWMiOiI0MmViZmEwMjE1ZTk0NjI3ZDVmOTgxNWQwZGYxMWY1YzhkOWE4NDgxY2FiMDU4ZjZhYTc4ZjMzNWM5NTYwOGQxIiwidGFnIjoiIn0%3D; expires=Tue, 02-Jul-2024 11:19:53 GMT; path=/; secure ◀XSRF-TOKEN=eyJpdiI6IlJraGpHa2YybkJEc2Uvdm81NG5iSmc9PSIsInZhbHVlIjoiQnRNWGw2UzFjRGlmS2pSeWx4WVpFNzF1WkFBT1lKQWhoTldSV3lyYkpqWlFHQmhTalVHVWlQbVpLMldDZnNBcFpoQjBRR ▶"
    1 => "involve_cms_laravel_session=eyJpdiI6InlxcVV3cUNFblJHOWN2dnFLS0llSkE9PSIsInZhbHVlIjoiTTNMWkRjR2Y5NjVoMW5QMW9mNk1rOGN5NFpJMUZxR0h4aGR2RWxIN1AzTUJMWkk2aENkTGVMaTJvbDF4bEZ6blEzWENhNENqd0owRFkwbFMzL20vMnl1Zy9hU3VzdGxFVVZIL28yQnpzQ0RkM3NiL2oxYkNhTFlRZy9vVUF3ZHgiLCJtYWMiOiIxYTAwYjg3MGJmNTQ4ZWU4YTg4ZDNmMDJiM2Q1YTE2MzY2ZmZkYzdmNjRhNmRmMjczYzA2YTZlYmU5ZWIzMzE2IiwidGFnIjoiIn0%3D; expires=Tue, 02-Jul-2024 11:19:53 GMT; path=/; httponly ◀involve_cms_laravel_session=eyJpdiI6InlxcVV3cUNFblJHOWN2dnFLS0llSkE9PSIsInZhbHVlIjoiTTNMWkRjR2Y5NjVoMW5QMW9mNk1rOGN5NFpJMUZxR0h4aGR2RWxIN1AzTUJMWkk2aENkTGVMaTJv ▶"
  ]
]


session_attributes
  0 of 0       array:4 [▼
  "_token" => "qeSTY7hb7vKPkgedNiwoU039dyYQU48jJHmqc1EJ"
  "_previous" => array:1 [▶
    "url" => "https://35-multiple-cars-motivation.bezkarbonu-order-form-laravel.vps.involve.cz"
  ]
  "_flash" => array:2 [▶
    "old" => []
    "new" => []
  ]
  "PHPDEBUGBAR_STACK_DATA" => []
]


AutoshowClearShow all(method)GETPOSTPUTDELETE

Date ↕MethodURLData#12024-07-02 11:19:53GET/42513201

PHP DebugBar | Open

DateMethodURLIPFilter data

Load moreShow only current URLShow allDelete all

Filter results
Method: GETPOSTPUTDELETE
Uri:
IP:
Search