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/au/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 `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
311.32ms
mysql
select * from `pages` where `pages`.`id` = 358 limit 1
1.11ms
mysql
select * from `v2_feedbacks` where `overall_enjoyment` is not null and `v2_feedbacks`.`deleted_at` is null
62.9ms
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
3.17ms
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
2.72ms
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
2.52ms
mysql
select * from `images` where `images`.`id` = '4855' limit 1
1.19ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 4855 and `image_translations`.`image_id` is not null
1.06ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3601 limit 1
1.44ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3600 limit 1
1.88ms
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.52ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3604 limit 1
1.61ms
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
2.43ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.33ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
0.99ms
mysql
select * from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null limit 1
0.87ms
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.94ms
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
6.25ms
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.73ms
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
8.43ms
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 count(*) as aggregate from `v2_pricing_values` where `v2_pricing_values`.`parent_value_id` = 7875 and `v2_pricing_values`.`parent_value_id` is not null and currency = 'AUD' and `v2_pricing_values`.`deleted_at` is null
9.56ms
mysql
select * from `v3_dated_values` where `v3_dated_values`.`dated_value_type` = 'App\Booking2\Model\Currency' and `v3_dated_values`.`dated_value_id` = 2 and `v3_dated_values`.`dated_value_id` is not null and property = 'rate_history' and date < '2026-04-04 04:05:24' order by `created_at` desc, `date` desc limit 1
1.89ms
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
5.39ms
mysql
select * from `v3_dated_values` where `v3_dated_values`.`dated_value_type` = 'App\Booking2\Model\Currency' and `v3_dated_values`.`dated_value_id` = 2 and `v3_dated_values`.`dated_value_id` is not null and property = 'rate_history' and date < '2026-04-04 04:05:24' order by `created_at` desc, `date` desc limit 1
1.73ms
mysql
select * from `images` where `images`.`id` = '4368' limit 1
1.14ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 4368 and `image_translations`.`image_id` is not null
0.99ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3606 limit 1
1.49ms
mysql
select * from `v2_booking_services` where `v2_booking_services`.`deleted_at` is null and `v2_booking_services`.`id` = 20 limit 1
1.29ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.13ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.14ms
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
2.59ms
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.4ms
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.11ms
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.17ms
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
6.09ms
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
3.58ms
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
8.65ms
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
13.51ms
mysql
select count(*) as aggregate from `v2_pricing_values` where `v2_pricing_values`.`parent_value_id` = 9623 and `v2_pricing_values`.`parent_value_id` is not null and currency = 'AUD' and `v2_pricing_values`.`deleted_at` is null
7.75ms
mysql
select * from `v3_dated_values` where `v3_dated_values`.`dated_value_type` = 'App\Booking2\Model\Currency' and `v3_dated_values`.`dated_value_id` = 2 and `v3_dated_values`.`dated_value_id` is not null and property = 'rate_history' and date < '2026-04-04 04:05:24' order by `created_at` desc, `date` desc limit 1
1.66ms
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
5.57ms
mysql
select * from `v3_dated_values` where `v3_dated_values`.`dated_value_type` = 'App\Booking2\Model\Currency' and `v3_dated_values`.`dated_value_id` = 2 and `v3_dated_values`.`dated_value_id` is not null and property = 'rate_history' and date < '2026-04-04 04:05:24' order by `created_at` desc, `date` desc limit 1
2.01ms
mysql
select * from `images` where `images`.`id` = '1519' limit 1
1.15ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 1519 and `image_translations`.`image_id` is not null
1.07ms
mysql
select * from `v2_booking_services` where `v2_booking_services`.`deleted_at` is null and `v2_booking_services`.`id` = 3 limit 1
1.85ms
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.79ms
mysql
select * from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null limit 1
0.98ms
mysql
select * from `content_variable_translations` where `content_variable_translations`.`content_variable_id` = 1 and `content_variable_translations`.`content_variable_id` is not null
1.01ms
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
6.5ms
mysql
select * from `v3_dated_values` where `v3_dated_values`.`dated_value_type` = 'App\Booking2\Model\Currency' and `v3_dated_values`.`dated_value_id` = 2 and `v3_dated_values`.`dated_value_id` is not null and property = 'rate_history' and date < '2026-04-04 04:05:24' order by `created_at` desc, `date` desc limit 1
3.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
5.72ms
mysql
select * from `v3_dated_values` where `v3_dated_values`.`dated_value_type` = 'App\Booking2\Model\Currency' and `v3_dated_values`.`dated_value_id` = 2 and `v3_dated_values`.`dated_value_id` is not null and property = 'rate_history' and date < '2026-04-04 04:05:24' order by `created_at` desc, `date` desc limit 1
2.69ms
mysql
select * from `images` where `images`.`id` = '4336' limit 1
0.98ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 4336 and `image_translations`.`image_id` is not null
0.87ms
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
3.11ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3610 limit 1
1.89ms
mysql
select * from `v2_booking_service_categories` where is_active = 1 and type = 1 order by `order` asc
1.49ms
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
2.98ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.2ms
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.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.86ms
mysql
select * from `v2_booking_service_categories` where `id` in ('1', '4', '5')
1.08ms
mysql
select * from `images` where `images`.`id` = '2179' limit 1
1.08ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 2179 and `image_translations`.`image_id` is not null
1.21ms
mysql
select * from `page_blocks` where `page_blocks`.`id` = 3614 limit 1
1.66ms
mysql
select * from `v2_booking_services` where `v2_booking_services`.`deleted_at` is null and `v2_booking_services`.`id` = 69 limit 1
1.37ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.16ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
0.84ms
mysql
select * from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null limit 1
0.78ms
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` = 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.73ms
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.46ms
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.1ms
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
14.65ms
mysql
select count(*) as aggregate from `v2_pricing_values` where `v2_pricing_values`.`parent_value_id` = 14690 and `v2_pricing_values`.`parent_value_id` is not null and currency = 'AUD' and `v2_pricing_values`.`deleted_at` is null
9.11ms
mysql
select * from `v3_dated_values` where `v3_dated_values`.`dated_value_type` = 'App\Booking2\Model\Currency' and `v3_dated_values`.`dated_value_id` = 2 and `v3_dated_values`.`dated_value_id` is not null and property = 'rate_history' and date < '2026-04-04 04:05:24' order by `created_at` desc, `date` desc limit 1
2.13ms
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
6.13ms
mysql
select * from `v3_dated_values` where `v3_dated_values`.`dated_value_type` = 'App\Booking2\Model\Currency' and `v3_dated_values`.`dated_value_id` = 2 and `v3_dated_values`.`dated_value_id` is not null and property = 'rate_history' and date < '2026-04-04 04:05:24' order by `created_at` desc, `date` desc limit 1
1.8ms
mysql
select * from `images` where `images`.`id` = '1553' limit 1
1.06ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 1553 and `image_translations`.`image_id` is not null
1.16ms
mysql
select * from `v2_booking_services` where `v2_booking_services`.`deleted_at` is null and `v2_booking_services`.`id` = 17 limit 1
1.53ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.39ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
0.82ms
mysql
select * from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null limit 1
0.95ms
mysql
select * from `content_variable_translations` where `content_variable_translations`.`content_variable_id` = 1 and `content_variable_translations`.`content_variable_id` is not null
1.14ms
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.54ms
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.63ms
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.58ms
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
12.56ms
mysql
select count(*) as aggregate from `v2_pricing_values` where `v2_pricing_values`.`parent_value_id` = 7858 and `v2_pricing_values`.`parent_value_id` is not null and currency = 'AUD' and `v2_pricing_values`.`deleted_at` is null
7.83ms
mysql
select * from `v3_dated_values` where `v3_dated_values`.`dated_value_type` = 'App\Booking2\Model\Currency' and `v3_dated_values`.`dated_value_id` = 2 and `v3_dated_values`.`dated_value_id` is not null and property = 'rate_history' and date < '2026-04-04 04:05:24' order by `created_at` desc, `date` desc limit 1
1.68ms
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.34ms
mysql
select * from `v3_dated_values` where `v3_dated_values`.`dated_value_type` = 'App\Booking2\Model\Currency' and `v3_dated_values`.`dated_value_id` = 2 and `v3_dated_values`.`dated_value_id` is not null and property = 'rate_history' and date < '2026-04-04 04:05:24' order by `created_at` desc, `date` desc limit 1
1.64ms
mysql
select * from `images` where `images`.`id` = '54' limit 1
1.1ms
mysql
select * from `image_translations` where `image_translations`.`image_id` = 54 and `image_translations`.`image_id` is not null
1.11ms
mysql
select count(*) as aggregate from `content_variables` where name like 'AGENT_COMMISSION_DEFAULT' and `content_variables`.`deleted_at` is null
1.03ms

Headers

if-modified-since
Thu, 05 Mar 2026 05:26:05 GMT
if-none-match
"1a497-64c402c4e62d7-gzip"
accept-encoding
deflate, gzip, br, zstd
accept
*/*
user-agent
Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)
host
test.cubagrouptour.com

Body

// No request body

Routing

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

Routing parameters

// No routing parameters