@extends("admin/layouts.master") @section('title','Commission List Per Category | ') @section("body")

Commission List

Note:

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