@if ($axis == 'horizontal')

{{ __('Categories') }}

@if ($categories->hasPages())

{{ __('View all') }}

@endif
@foreach ($categories as $category) @php $selected = $category->id == $selectedCategoryId ? 'font-bold text-primary-500 bg-gray-200' : ''; @endphp

{{ $category->name }}

@endforeach
@else

{{ __('Categories') }}

@foreach ($categories as $category) @php $selected = $category->id == $selectedCategoryId ? 'font-bold text-primary-500 bg-gray-200 p-2' : 'p-2 md:p-0'; @endphp
{{ $category->name }}

{{ $category->name }}

@endforeach {{-- if categories have more paginate --}} @if ($categories->hasPages())

{{ __('View all') }}

@endif
@endif