<option value="{{ $child_category->id }}">--{{ $child_category->name }}</option>
@if ($child_category->childs)
        @foreach ($child_category->childs as $childCategory)
            @include('backend.subsections.child_category', ['child_category' => $childCategory])
        @endforeach
@endif