@extends('layouts.app') @section('title', __('Categories')) @section('content')

{{ __('Product Categories') }}

{{ __('Browse our collection by category') }}

@if($featuredCategories->count() > 0)

{{ __('Popular Categories') }}

@foreach($featuredCategories as $category)
@endforeach
@endif

{{ __('All Categories') }}

@if($categories->count() > 0)
@foreach($categories as $category)
@if($category->image)
{{ $category->name }}
@else
@endif
{{ $category->name }}
@if($category->description)

{{ Str::limit($category->description, 80) }}

@endif @if($category->children->count() > 0)
{{ __('Subcategories') }}:
@endif
@endforeach
@else

{{ __('No Categories Found') }}

{{ __('We are currently organizing our product categories. Please check back soon!') }}

{{ __('Browse All Products') }}
@endif
@endsection @push('styles') @endpush