@php
$value = null;
for ($i=0; $i < $child_category->level; $i++){
$value .= '-';
}
@endphp
{{ $value }}{{ $childCategory->getTranslation('name') }}
@if ($child_category->childrenCategories)
@foreach ($child_category->childrenCategories as $childCategory)
@include('backend.product.products.child_category', ['child_category' => $childCategory])
@endforeach
@endif