raffles bug fixes

This commit is contained in:
2025-07-29 17:49:50 +05:45
parent f06525dc6f
commit 64592f5b96
5 changed files with 99 additions and 807 deletions

View File

@@ -26,6 +26,7 @@ class WebsiteController extends Controller
$footerMenus = getAllFooterMenusWithChildren();
$tests = Test::where('status', 1)->where('parent_id', null)->get();
$countries = Country::where('status', 1)->where('parent_id', null)->get();
$interviews = Service::where('status', 1)->where('parent_id', null)->get();
$services = Service::where('status', 1)->where('parent_id', null)->get();
$this->path = config('app.client');
@@ -35,6 +36,7 @@ class WebsiteController extends Controller
'tests' => $tests,
'countries' => $countries,
'services' => $services,
'interviews' => $interviews,
]);
}