Refactor navigation settings across multiple pages: update navigation groups and labels for HomePageSettings, ManageCtaSettings, ManagePortfolio, ManageSolutions, ManageSuccess, and ManageSite. Introduce solutions data fetching in OurSolutionPageController and enhance header navigation with dynamic solutions list. Update database migration to include new fields for solutions.
This commit is contained in:
@@ -20,12 +20,9 @@
|
||||
|
||||
<li class="menu-item-has-children"><a href="{{ route('our-solutions.index') }}">{{ __('Our solutions') }}</a>
|
||||
<ul class="sub-menu">
|
||||
<li><a href="history.html">Company History</a></li>
|
||||
<li><a href="testimonial.html">Testimonials</a></li>
|
||||
<li><a href="pricing.html">Price Plans</a></li>
|
||||
<li><a href="faq.html">FAQ's</a></li>
|
||||
<li><a href="request-quote.html">Request Quote</a></li>
|
||||
<li><a href="404-error.html">404 Page</a></li>
|
||||
@foreach($solutions as $solution)
|
||||
<li><a href="{{ route('our-solutions.show', $solution->slug) }}">{{ $solution->name }}</a></li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user