@extends('backEnd.master') @section('mainContent')

{{__('seller.category_list_with_commission')}}

@foreach($CategoryList as $key => $item) @endforeach
{{ __('common.sl') }} {{ __('common.name') }} {{ __('product.parent_category') }} {{ __('common.commission_rate') }} {{ __('common.status') }}
{{ $key + 1 }} {{ $item->name }} {{ $item->parentCategory? $item->parentCategory->name:'Parent'}} {{ $item->commission_rate }} % {{ showStatus($item->status) }}
@endsection