@extends('admin.layouts.sellermastersoyuz') @section('title', __('Commission Setting')) @section('body') @include('admin.layouts.topbar',$data)
| {{ __("ID") }} | {{__("Category")}} | {{__("Rate")}} | {{__("Amount Type")}} | {{__("Commision Type")}} |
|---|---|---|---|---|
| {{ ++$key }} | {{$commission->category->title ?? __('All')}} | {{$commission->rate ?? ''}} | @if($commission->p_type == 'p') {{__('Percentage')}} @else($commission->p_type == 'f') {{__('Fix Amount')}} @endif | @if($commission->type == 'c') {{__('Category')}} @else {{__('Flat For All')}} @endif |
| {{$key + 1}} | {{$commission->category->title ?? ''}} | {{$commission->rate ?? ''}} | @if($commission->type == 'p') {{__('Percentage')}} @else {{ __('Fix Amount') }} @endif | @if($commission->type == 'flat') {{ __('Flat For All') }} @else {{ __('Category') }} @endif |