@php $tabs = config('offerings.tabs'); $offeringsCatalog = config('offerings.catalog'); $offeringsNavTabs = []; foreach ($tabs as $index => $tab) { $offeringsNavTabs[] = [ 'label' => $tab['label'], 'attrs' => [ 'role' => 'tab', 'id' => 'offerings-tab-' . $tab['id'], 'aria-controls' => 'offerings-panel-' . $tab['id'], 'aria-selected' => $index === 0 ? 'true' : 'false', 'data-offerings-tab' => $tab['id'], ], ]; } @endphp
Packages & services

Scroll through our offerings

Uzapoint gives growing businesses a single platform to manage operations, and make better decisions by bringing your business into one place.

@include('partials.home.scrollable-tab-nav', [ 'tabs' => $offeringsNavTabs, 'scrollId' => 'offerings-nav-scroll', 'navLabel' => 'Offering categories', 'wrapperClass' => 'offerings-tab-nav', ])
@foreach ($tabs as $index => $tab) @include('partials.products.offering-panel', [ 'tab' => $tab, 'catalog' => $offeringsCatalog[$tab['id']], 'isActive' => $index === 0, ]) @endforeach