@ -40,6 +40,7 @@
$linkedin = \App\Models\Setting::where('slug','linkedin')->get('value')->first()->value ?? '';
$logo = \App\Models\Setting::where('slug','logo')->get('value')->first()->value ?? '';
$white_logo = \App\Models\Setting::where('slug','white-logo')->get('value')->first()->value ?? '';
$services = \App\Models\Service::where('status',1)->get();
@endphp
<!-- Top section -->
< section id = "topbar" class = "d-flex justify-content-center justify-content-md-between align-items-center" >
@ -83,7 +84,7 @@
< / a >
< ul class = "nav nav-inner navbar-list" id = "navigation-links" >
< li class = "nav-item" >
< a class = "nav-link" href = "/about " > ABOUT US< / a >
< a class = "nav-link" href = "{{url('about')}} " > ABOUT US< / a >
< / li >
< li class = "nav-item dropdown" >
< a class = "nav-link dropdown-toggle" href = "{{url('/study-abroad')}}" id = "navbarDropdown" role = "button" data-bs-hover = "dropdown" aria-expanded = "false" >
@ -91,22 +92,21 @@
< / a >
< ul class = "dropdown-menu" aria-labelledby = "navbarDropdown" >
< li >
< a class = "dropdown-item" href = "{{url('/study-abroad-detail')}}" > Study in Australia< / a >
< a class = "dropdown-item" href = "{{url('/study-abroad-detail')}}" > Study in Melbourne< / a >
@foreach($services as $service)
< a class = "dropdown-item" href = "{{url('education/'.$service->slug)}}" > {{$service->name}}< / a >
@endforeach
< / li >
< / ul >
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "/study-abroad" > STUDY ABROAD < / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "{{url('/visas')}}" > VISA< / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "/blogs" > BLOG< / a >
< a class = "nav-link" href = "{{url(' /blogs')}} " > BLOG< / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "/contact " > CONTACT< / a >
< a class = "nav-link" href = "{{url('contact')}} " > CONTACT< / a >
< / li >
< / ul >
< div class = "mobile-navbar-btn" >
@ -168,7 +168,7 @@
< div class = "lists-links" >
< ul class = "list-unstyled" >
< li >
@foreach(App\Models\Service::where('status',1)->get() as $service)
@foreach($services as $service)
< a href = "{{url('education/'.$service->slug)}}" target = "_blank" rel = 'noreferrer' class = ' footer-link' >
{{$service->name}}
< / a >