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

All Categories

Browse our extensive collection of product categories

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

{{ substr($category->description, 0, 100) }}

@if($category->subcategories->count() > 0)
{{ $category->subcategories->count() }} subcategories
@endif
@endforeach
{{ $categories->links() }}
@else

No categories available at the moment

@endif
@endsection