{{-- Extends layout --}} @extends(getThemeBasePath()) @section('page_title') {{ $page_title ?? '' }} @endsection {{-- Content --}} @section('content') @include('backend.hr.support_center.header')
{{--
--}}

{{ $category_name ?? "" }}

@foreach($pages as $page) @php $pageIcon = 'icons/duotune/' . ($page['page_icon'] ?? 'abstract/abs027.svg'); $pageColor = $page['page_color'] ?? 'primary'; @endphp
{!! theme()->getSvgIcon($pageIcon, 'svg-icon-' . $pageColor . ' svg-icon-2x svg-icon-lg-2x me-5 ms-n1 mt-2') !!}
{{ $page['short_description'] ?? '' }}
@endforeach @if ($pages->hasPages())
    @foreach ($pages->getUrlRange(1, $pages->lastPage()) as $page => $url)
  • {{ $page }}
  • @endforeach
@endif

Browse

@forelse ($categories as $catId => $catTitle) @php $isActive = (string)$catId === (string)$category; $catUrl = route('support_center.index', ['category' => $catId]); @endphp @empty
No categories available.
@endforelse
@endsection @section('scripts') @endsection