Internal Server Error

InvalidArgumentException

vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:138

View [] not found.

LARAVEL 12.53.0
PHP 8.4.18
UNHANDLED
CODE 0
500
GET
https://test.cubagrouptour.com/us/tour/multi-day-group-tours

Exception trace

4 vendor frames
Illuminate\View\FileViewFinder->findInPaths()
vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:138
Illuminate\View\FileViewFinder->findInPaths()
vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:78
Illuminate\View\FileViewFinder->find()
vendor/laravel/framework/src/Illuminate/View/Factory.php:150
Illuminate\View\Factory->make()
vendor/laravel/framework/src/Illuminate/View/Concerns/ManagesComponents.php:103
Illuminate\View\Factory->renderComponent()
resources/views/v4/pages/index.blade.php:16
11            @endforeach
12        @endpush
13    @endif
14    @foreach(V4Utility::get_page_blocks() as $page_block)
15        <x-v4::page-block.render :item="$page_block"/>
16    @endforeach
17</x-v4::layout.app>
18
19
13 vendor frames
require(string)
vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123
Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}()
vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124
Illuminate\Filesystem\Filesystem->getRequire()
vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:57
Illuminate\View\Engines\PhpEngine->evaluatePath()
vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:76
Illuminate\View\Engines\CompilerEngine->get()
vendor/laravel/framework/src/Illuminate/View/View.php:208
Illuminate\View\View->getContents()
vendor/laravel/framework/src/Illuminate/View/View.php:191
Illuminate\View\View->renderContents()
vendor/laravel/framework/src/Illuminate/View/View.php:160
Illuminate\View\View->render()
vendor/laravel/framework/src/Illuminate/Http/Response.php:78
Illuminate\Http\Response->setContent()
vendor/laravel/framework/src/Illuminate/Http/Response.php:34
Illuminate\Http\Response->__construct()
vendor/laravel/framework/src/Illuminate/Routing/Router.php:939
Illuminate\Routing\Router::toResponse()
vendor/laravel/framework/src/Illuminate/Routing/Router.php:906
Illuminate\Routing\Router->prepareResponse()
vendor/laravel/framework/src/Illuminate/Routing/Router.php:821
Illuminate\Routing\Router->{closure:Illuminate\Routing\Router::runRouteWithinStack():821}()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180
Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}()
app/V4/Controllers/Middleware/PageBehaviors.php:22
17        }
18
19        $behaviors = $page->getBehaviors();
20
21        if (empty($behaviors)) {
22            return $next($request);
23        }
24
25        foreach ($behaviors as $behavior) {
26            if (!$behavior->passes($request)) {
27
28                if (!$behavior->hasRedirect()) {
29                    abort(403, implode(" | ", [
30                        "BEHAVIOR: " . get_class($behavior),
31                        "PAGE: "     . $page->seo_url_var_name,
32                        "NO REDIRECT DEFINED",
33                    ]));
34
1 vendor frame
App\V4\Controllers\Middleware\PageBehaviors->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
app/V4/Controllers/Middleware/Locale.php:33
28
29        $locale_cache = LocaleHelper::selected_lang();
30        $user_cache = User::current() ? User::current()->id : 0;
31        $laravel_cache = $locale_cache . "_" . $user_cache;
32        config(['laravel-model-caching.cache-prefix' => $laravel_cache]);
33        return $next($request);
34    }
35}
1 vendor frame
App\V4\Controllers\Middleware\Locale->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
app/V4/Controllers/Middleware/MinifyHtml.php:21
16     * @param Closure $next
17     * @return mixed
18     */
19    public function handle(Request $request, Closure $next): mixed
20    {
21        $response = $next($request);
22
23        if (config('minify_html.enabled')) {
24            // Only compress HTML responses
25            if ($response instanceof Response && str_contains($response->headers->get('Content-Type'), 'text/html')) {
26                $html = $response->getContent();
27                $compressor = Factory::constructSmallest();
28                $compressedHtml = $compressor->compress($html);
29                $response->setContent($compressedHtml);
30            }
31        }
32
33
5 vendor frames
App\V4\Controllers\Middleware\MinifyHtml->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/silber/page-cache/src/Middleware/CacheResponse.php:38
Silber\PageCache\Middleware\CacheResponse->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59
Barryvdh\Debugbar\Middleware\InjectDebugbar->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
app/Http/Middleware/CheckBanned.php:30
25            $request->session()->regenerateToken();
26
27            return redirect()->route('login')->with('error', 'Your Account is suspended, please contact Admin.');
28
29        }
30        return $next($request);
31    }
32}
33
30 vendor frames
App\Http\Middleware\CheckBanned->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/spatie/laravel-responsecache/src/Middlewares/CacheResponse.php:51
Spatie\ResponseCache\Middlewares\CacheResponse->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50
Illuminate\Routing\Middleware\SubstituteBindings->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:87
Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:48
Illuminate\View\Middleware\ShareErrorsFromSession->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:120
Illuminate\Session\Middleware\StartSession->handleStatefulRequest()
vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:63
Illuminate\Session\Middleware\StartSession->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:36
Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:74
Illuminate\Cookie\Middleware\EncryptCookies->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137
Illuminate\Pipeline\Pipeline->then()
vendor/laravel/framework/src/Illuminate/Routing/Router.php:821
Illuminate\Routing\Router->runRouteWithinStack()
vendor/laravel/framework/src/Illuminate/Routing/Router.php:800
Illuminate\Routing\Router->runRoute()
vendor/laravel/framework/src/Illuminate/Routing/Router.php:764
Illuminate\Routing\Router->dispatchToRoute()
vendor/laravel/framework/src/Illuminate/Routing/Router.php:753
Illuminate\Routing\Router->dispatch()
vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200
Illuminate\Foundation\Http\Kernel->{closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197}()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180
Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}()
vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59
Barryvdh\Debugbar\Middleware\InjectDebugbar->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:109
Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219
Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}()
vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137
Illuminate\Pipeline\Pipeline->then()
vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175
Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144
Illuminate\Foundation\Http\Kernel->handle()
public/index.php:52
47|
48*/
49
50$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
51
52$response = $kernel->handle(
53    $request = Illuminate\Http\Request::capture()
54);
55
56$response->send();
57
58$kernel->terminate($request, $response);
59

Queries

mysql
select * from `pages` where seo_url_var_name = 'PAGE_URL_SMALL_GROUP_TOURS' and `pages`.`deleted_at` is null limit 1
207.94ms
mysql
select `pages`.*, `page_versions`.`default_page_id` as `pivot_default_page_id`, `page_versions`.`locale_page_id` as `pivot_locale_page_id`, `page_versions`.`locale` as `pivot_locale` from `pages` inner join `page_versions` on `pages`.`id` = `page_versions`.`locale_page_id` where is_active = 1 and `page_versions`.`default_page_id` in (358) and `pages`.`deleted_at` is null
1.28ms
mysql
select `pages`.*, `page_versions`.`locale_page_id` as `pivot_locale_page_id`, `page_versions`.`default_page_id` as `pivot_default_page_id`, `page_versions`.`locale` as `pivot_locale` from `pages` inner join `page_versions` on `pages`.`id` = `page_versions`.`default_page_id` where is_active = 1 and `page_versions`.`locale_page_id` in (358) and `pages`.`deleted_at` is null
1.15ms
mysql
select * from `page_blocks` where `page_blocks`.`page_id` = 358 and `page_blocks`.`page_id` is not null and is_active = 1 and `page_position` = 'head' and `parent_block_id` is null and `page_blocks`.`deleted_at` is null order by `page_position` desc, `order` asc
2.8ms
mysql
select * from `pages` where `pages`.`id` = 358 limit 1
2.16ms
mysql
select * from `v2_feedbacks` where `overall_enjoyment` is not null and `v2_feedbacks`.`deleted_at` is null
49.36ms
mysql
select * from `page_blocks` where `page_blocks`.`page_id` = 358 and `page_blocks`.`page_id` is not null and is_active = 1 and `page_position` = 'top' and `parent_block_id` is null and `page_blocks`.`deleted_at` is null order by `page_position` desc, `order` asc
2.48ms
mysql
select * from `page_blocks` where `page_blocks`.`parent_block_id` = 3600 and `page_blocks`.`parent_block_id` is not null and page_id = 358 and is_active = 1 and `page_blocks`.`deleted_at` is null order by `order` asc
1.85ms
mysql
select * from `page_blocks` where `page_blocks`.`parent_block_id` = 3601 and `page_blocks`.`parent_block_id` is not null and page_id = 358 and is_active = 1 and `page_blocks`.`deleted_at` is null order by `order` asc
1.86ms
mysql
select * from `images` where `images`.`id` = '4855' limit 1
0.98ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 4855 and `image_translations`.`image_id` is not null
0.93ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3601 limit 1
1.28ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3600 limit 1
1.53ms
mysql
select * from `page_blocks` where `page_blocks`.`parent_block_id` = 3604 and `page_blocks`.`parent_block_id` is not null and page_id = 358 and is_active = 1 and `page_blocks`.`deleted_at` is null order by `order` asc
2.87ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3604 limit 1
1.74ms
mysql
select * from `page_blocks` where `page_blocks`.`parent_block_id` = 3606 and `page_blocks`.`parent_block_id` is not null and page_id = 358 and is_active = 1 and `page_blocks`.`deleted_at` is null order by `order` asc
3.18ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.17ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
0.98ms
mysql
select * from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null limit 1
0.89ms
mysql
select * from `content_variable_translations` where `content_variable_translations`.`content_variable_id` = 1 and `content_variable_translations`.`content_variable_id` is not null
0.95ms
mysql
select * from `v2_pricing_rates` where `v2_pricing_rates`.`booking_service_id` = 2 and `v2_pricing_rates`.`booking_service_id` is not null and payment_type = 'upfront' and `is_active` = 1 and `v2_pricing_rates`.`deleted_at` is null order by `order` asc
5.92ms
mysql
select `v2_pricing_rules`.*, `v2_rulables`.`rulable_id` as `pivot_rulable_id`, `v2_rulables`.`pricing_rule_id` as `pivot_pricing_rule_id`, `v2_rulables`.`rulable_type` as `pivot_rulable_type` from `v2_pricing_rules` inner join `v2_rulables` on `v2_pricing_rules`.`id` = `v2_rulables`.`pricing_rule_id` where `v2_rulables`.`rulable_id` = 10 and `v2_rulables`.`rulable_type` = 'App\Booking2\Model\PricingRate' order by `order` asc
4.27ms
mysql
select count(*) as aggregate from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 10 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null
9.64ms
mysql
select * from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 10 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null order by `created_at` desc limit 1
12.22ms
mysql
select `v2_pricing_rules`.*, `v2_rulables`.`rulable_id` as `pivot_rulable_id`, `v2_rulables`.`pricing_rule_id` as `pivot_pricing_rule_id`, `v2_rulables`.`rulable_type` as `pivot_rulable_type` from `v2_pricing_rules` inner join `v2_rulables` on `v2_pricing_rules`.`id` = `v2_rulables`.`pricing_rule_id` where `v2_rulables`.`rulable_id` = 10 and `v2_rulables`.`rulable_type` = 'App\Booking2\Model\PricingRate' order by `order` asc
6.06ms
mysql
select * from `images` where `images`.`id` = '4368' limit 1
1.18ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 4368 and `image_translations`.`image_id` is not null
0.91ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3606 limit 1
1.78ms
mysql
select * from `v2_booking_services` where `v2_booking_services`.`deleted_at` is null and `v2_booking_services`.`id` = 20 limit 1
1.52ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
0.97ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
0.74ms
mysql
select * from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null limit 1
0.76ms
mysql
select * from `content_variable_translations` where `content_variable_translations`.`content_variable_id` = 1 and `content_variable_translations`.`content_variable_id` is not null
0.91ms
mysql
select * from `pages` where seo_url_var_name = 'PAGE_URL_9_DAY_TOUR_THIS_CUBAN_LIFE_OLD' and `pages`.`deleted_at` is null limit 1
1.31ms
mysql
select `pages`.*, `page_versions`.`default_page_id` as `pivot_default_page_id`, `page_versions`.`locale_page_id` as `pivot_locale_page_id`, `page_versions`.`locale` as `pivot_locale` from `pages` inner join `page_versions` on `pages`.`id` = `page_versions`.`locale_page_id` where is_active = 1 and `page_versions`.`default_page_id` in (157) and `pages`.`deleted_at` is null
1.14ms
mysql
select `pages`.*, `page_versions`.`locale_page_id` as `pivot_locale_page_id`, `page_versions`.`default_page_id` as `pivot_default_page_id`, `page_versions`.`locale` as `pivot_locale` from `pages` inner join `page_versions` on `pages`.`id` = `page_versions`.`default_page_id` where is_active = 1 and `page_versions`.`locale_page_id` in (157) and `pages`.`deleted_at` is null
1.07ms
mysql
select * from `v2_pricing_rates` where `v2_pricing_rates`.`booking_service_id` = 20 and `v2_pricing_rates`.`booking_service_id` is not null and payment_type = 'upfront' and `is_active` = 1 and `v2_pricing_rates`.`deleted_at` is null order by `order` asc
5.18ms
mysql
select `v2_pricing_rules`.*, `v2_rulables`.`rulable_id` as `pivot_rulable_id`, `v2_rulables`.`pricing_rule_id` as `pivot_pricing_rule_id`, `v2_rulables`.`rulable_type` as `pivot_rulable_type` from `v2_pricing_rules` inner join `v2_rulables` on `v2_pricing_rules`.`id` = `v2_rulables`.`pricing_rule_id` where `v2_rulables`.`rulable_id` = 44 and `v2_rulables`.`rulable_type` = 'App\Booking2\Model\PricingRate' order by `order` asc
4.55ms
mysql
select count(*) as aggregate from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 44 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null
6.97ms
mysql
select * from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 44 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null order by `created_at` desc limit 1
12.02ms
mysql
select `v2_pricing_rules`.*, `v2_rulables`.`rulable_id` as `pivot_rulable_id`, `v2_rulables`.`pricing_rule_id` as `pivot_pricing_rule_id`, `v2_rulables`.`rulable_type` as `pivot_rulable_type` from `v2_pricing_rules` inner join `v2_rulables` on `v2_pricing_rules`.`id` = `v2_rulables`.`pricing_rule_id` where `v2_rulables`.`rulable_id` = 44 and `v2_rulables`.`rulable_type` = 'App\Booking2\Model\PricingRate' order by `order` asc
4.99ms
mysql
select * from `images` where `images`.`id` = '1519' limit 1
210.03ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 1519 and `image_translations`.`image_id` is not null
0.99ms
mysql
select * from `v2_booking_services` where `v2_booking_services`.`deleted_at` is null and `v2_booking_services`.`id` = 3 limit 1
1.56ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.22ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
0.95ms
mysql
select * from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null limit 1
0.83ms
mysql
select * from `content_variable_translations` where `content_variable_translations`.`content_variable_id` = 1 and `content_variable_translations`.`content_variable_id` is not null
0.85ms
mysql
select * from `v2_pricing_rates` where `v2_pricing_rates`.`booking_service_id` = 3 and `v2_pricing_rates`.`booking_service_id` is not null and payment_type = 'upfront' and `is_active` = 1 and `v2_pricing_rates`.`deleted_at` is null order by `order` asc
6.26ms
mysql
select `v2_pricing_rules`.*, `v2_rulables`.`rulable_id` as `pivot_rulable_id`, `v2_rulables`.`pricing_rule_id` as `pivot_pricing_rule_id`, `v2_rulables`.`rulable_type` as `pivot_rulable_type` from `v2_pricing_rules` inner join `v2_rulables` on `v2_pricing_rules`.`id` = `v2_rulables`.`pricing_rule_id` where `v2_rulables`.`rulable_id` = 26 and `v2_rulables`.`rulable_type` = 'App\Booking2\Model\PricingRate' order by `order` asc
3.99ms
mysql
select count(*) as aggregate from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 26 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null
8.91ms
mysql
select * from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 26 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null order by `created_at` desc limit 1
12.6ms
mysql
select `v2_pricing_rules`.*, `v2_rulables`.`rulable_id` as `pivot_rulable_id`, `v2_rulables`.`pricing_rule_id` as `pivot_pricing_rule_id`, `v2_rulables`.`rulable_type` as `pivot_rulable_type` from `v2_pricing_rules` inner join `v2_rulables` on `v2_pricing_rules`.`id` = `v2_rulables`.`pricing_rule_id` where `v2_rulables`.`rulable_id` = 26 and `v2_rulables`.`rulable_type` = 'App\Booking2\Model\PricingRate' order by `order` asc
4.05ms
mysql
select * from `images` where `images`.`id` = '4336' limit 1
1.01ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 4336 and `image_translations`.`image_id` is not null
1.15ms
mysql
select * from `page_blocks` where `page_blocks`.`parent_block_id` = 3610 and `page_blocks`.`parent_block_id` is not null and page_id = 358 and is_active = 1 and `page_blocks`.`deleted_at` is null order by `order` asc
2.79ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3610 limit 1
1.45ms
mysql
select * from `v2_booking_service_categories` where is_active = 1 and type = 1 order by `order` asc
1.43ms
mysql
select * from `page_blocks` where `page_blocks`.`parent_block_id` = 3614 and `page_blocks`.`parent_block_id` is not null and page_id = 358 and is_active = 1 and `page_blocks`.`deleted_at` is null order by `order` asc
3.52ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.08ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
0.85ms
mysql
select * from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null limit 1
0.8ms
mysql
select * from `content_variable_translations` where `content_variable_translations`.`content_variable_id` = 1 and `content_variable_translations`.`content_variable_id` is not null
0.78ms
mysql
select * from `v2_booking_service_categories` where `id` in ('1', '4', '5')
0.86ms
mysql
select * from `images` where `images`.`id` = '2179' limit 1
0.93ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 2179 and `image_translations`.`image_id` is not null
1.26ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3614 limit 1
1.51ms
mysql
select * from `v2_booking_services` where `v2_booking_services`.`deleted_at` is null and `v2_booking_services`.`id` = 69 limit 1
1.65ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.11ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
0.79ms
mysql
select * from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null limit 1
0.84ms
mysql
select * from `content_variable_translations` where `content_variable_translations`.`content_variable_id` = 1 and `content_variable_translations`.`content_variable_id` is not null
0.95ms
mysql
select * from `v2_pricing_rates` where `v2_pricing_rates`.`booking_service_id` = 69 and `v2_pricing_rates`.`booking_service_id` is not null and payment_type = 'upfront' and `is_active` = 1 and `v2_pricing_rates`.`deleted_at` is null order by `order` asc
5.74ms
mysql
select `v2_pricing_rules`.*, `v2_rulables`.`rulable_id` as `pivot_rulable_id`, `v2_rulables`.`pricing_rule_id` as `pivot_pricing_rule_id`, `v2_rulables`.`rulable_type` as `pivot_rulable_type` from `v2_pricing_rules` inner join `v2_rulables` on `v2_pricing_rules`.`id` = `v2_rulables`.`pricing_rule_id` where `v2_rulables`.`rulable_id` = 699 and `v2_rulables`.`rulable_type` = 'App\Booking2\Model\PricingRate' order by `order` asc
4.28ms
mysql
select count(*) as aggregate from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 699 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null
8.9ms
mysql
select * from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 699 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null order by `created_at` desc limit 1
11.86ms
mysql
select `v2_pricing_rules`.*, `v2_rulables`.`rulable_id` as `pivot_rulable_id`, `v2_rulables`.`pricing_rule_id` as `pivot_pricing_rule_id`, `v2_rulables`.`rulable_type` as `pivot_rulable_type` from `v2_pricing_rules` inner join `v2_rulables` on `v2_pricing_rules`.`id` = `v2_rulables`.`pricing_rule_id` where `v2_rulables`.`rulable_id` = 699 and `v2_rulables`.`rulable_type` = 'App\Booking2\Model\PricingRate' order by `order` asc
5.58ms
mysql
select * from `images` where `images`.`id` = '1553' limit 1
1.12ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 1553 and `image_translations`.`image_id` is not null
1.03ms
mysql
select * from `v2_booking_services` where `v2_booking_services`.`deleted_at` is null and `v2_booking_services`.`id` = 17 limit 1
1.46ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.22ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
0.72ms
mysql
select * from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null limit 1
0.85ms
mysql
select * from `content_variable_translations` where `content_variable_translations`.`content_variable_id` = 1 and `content_variable_translations`.`content_variable_id` is not null
0.83ms
mysql
select * from `v2_pricing_rates` where `v2_pricing_rates`.`booking_service_id` = 17 and `v2_pricing_rates`.`booking_service_id` is not null and payment_type = 'upfront' and `is_active` = 1 and `v2_pricing_rates`.`deleted_at` is null order by `order` asc
5.11ms
mysql
select `v2_pricing_rules`.*, `v2_rulables`.`rulable_id` as `pivot_rulable_id`, `v2_rulables`.`pricing_rule_id` as `pivot_pricing_rule_id`, `v2_rulables`.`rulable_type` as `pivot_rulable_type` from `v2_pricing_rules` inner join `v2_rulables` on `v2_pricing_rules`.`id` = `v2_rulables`.`pricing_rule_id` where `v2_rulables`.`rulable_id` = 23 and `v2_rulables`.`rulable_type` = 'App\Booking2\Model\PricingRate' order by `order` asc
5.82ms
mysql
select count(*) as aggregate from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 23 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null
7.93ms
mysql
select * from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 23 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null order by `created_at` desc limit 1
11.46ms
mysql
select `v2_pricing_rules`.*, `v2_rulables`.`rulable_id` as `pivot_rulable_id`, `v2_rulables`.`pricing_rule_id` as `pivot_pricing_rule_id`, `v2_rulables`.`rulable_type` as `pivot_rulable_type` from `v2_pricing_rules` inner join `v2_rulables` on `v2_pricing_rules`.`id` = `v2_rulables`.`pricing_rule_id` where `v2_rulables`.`rulable_id` = 23 and `v2_rulables`.`rulable_type` = 'App\Booking2\Model\PricingRate' order by `order` asc
5.13ms
mysql
select * from `images` where `images`.`id` = '54' limit 1
0.86ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 54 and `image_translations`.`image_id` is not null
0.97ms
mysql
select * from `v2_booking_services` where `v2_booking_services`.`deleted_at` is null and `v2_booking_services`.`id` = 103 limit 1
1.49ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.15ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
0.77ms
mysql
select * from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null limit 1
0.74ms
mysql
select * from `content_variable_translations` where `content_variable_translations`.`content_variable_id` = 1 and `content_variable_translations`.`content_variable_id` is not null
0.87ms
mysql
select * from `v2_pricing_rates` where `v2_pricing_rates`.`booking_service_id` = 103 and `v2_pricing_rates`.`booking_service_id` is not null and payment_type = 'upfront' and `is_active` = 1 and `v2_pricing_rates`.`deleted_at` is null order by `order` asc
6.21ms
mysql
select `v2_pricing_rules`.*, `v2_rulables`.`rulable_id` as `pivot_rulable_id`, `v2_rulables`.`pricing_rule_id` as `pivot_pricing_rule_id`, `v2_rulables`.`rulable_type` as `pivot_rulable_type` from `v2_pricing_rules` inner join `v2_rulables` on `v2_pricing_rules`.`id` = `v2_rulables`.`pricing_rule_id` where `v2_rulables`.`rulable_id` = 866 and `v2_rulables`.`rulable_type` = 'App\Booking2\Model\PricingRate' order by `order` asc
4.64ms
mysql
select count(*) as aggregate from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 866 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null
7.09ms
mysql
select * from `v2_pricing_values` where `v2_pricing_values`.`valuable_type` = 'App\Booking2\Model\PricingRate' and `v2_pricing_values`.`valuable_id` = 866 and `v2_pricing_values`.`valuable_id` is not null and `v2_pricing_values`.`deleted_at` is null order by `created_at` desc limit 1
11.25ms

Headers

connection
keep-alive
accept
*/*
accept-encoding
gzip, deflate
user-agent
Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36
host
test.cubagrouptour.com

Body

// No request body

Routing

controller
App\V4\Controllers\PagesController@index
route name
PAGE_URL_SMALL_GROUP_TOURS-get-us
middleware
web, v4-page-cache, v4-minify-html, v4-locale, v4-page-behaviors

Routing parameters

// No routing parameters