@if ($data->list_type == "categories")
@php
$args = [
'@sorttype' => $data->sorttype,
'@limit' => $data->item_number > 0? $data->item_number : 5
];
if($data->parent_category_id){
$args['parent_id'] = $data->parent_category_id;
}
@endphp
@if (count($categories = get_product_categories($args)))
@foreach ($categories as $cate)
{{$cate->name}}
{{$cate->description}}
@endforeach
@endif
@else
{!! $children !!}
@endif