Skip to content

Instantly share code, notes, and snippets.

@ghermans
Created July 8, 2020 18:53
Show Gist options
  • Save ghermans/f3f11a29b8feb557a75a6ec0fe8d5635 to your computer and use it in GitHub Desktop.
Save ghermans/f3f11a29b8feb557a75a6ec0fe8d5635 to your computer and use it in GitHub Desktop.
Get all categories in Bagisto
@php
$categories = [];
foreach (app('Webkul\Category\Repositories\CategoryRepository')->getVisibleCategoryTree(core()->getCurrentChannel()->root_category_id) as $category) {
if ($category->slug)
array_push($categories, $category);
}
@endphp
<ul>
@foreach($categories as $category_data)
<li>{{ $category_data->name }}</li>
@endforeach
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment