@extends('admin.layouts.master-soyuz') @section('title',__('Commission List Per Category')) @section('body') @include('admin.layouts.topbar',$data)
{{ __('Commission') }}
{{__("If you enable commission by per category than in side menu you can see a new commission menu where you can create commission for each category and define rates too.")}}
@foreach($commission_settings as $key=> $commission) @endforeach
{{ __("ID") }} {{ __("Rate") }} {{ __('Type') }} {{ __("Action") }}
{{ $key+1 }} @if($commission->type != 'c') {{$commission->rate}} {{ $commission->p_type == 'f' ? __("Fix Amount") : "%" }} @else {{__("Linked to category (check rate under commision menu for each category)")}} @endif @if($commission->type == 'c') {{__('Category')}} @elseif($commission->type == 'flat') {{__('Flat For All')}} @endif
@endsection