@extends('backend.layouts.app') @section('content') @php $route = Route::currentRouteName() == 'sellers.index' ? 'all_seller_route' : 'seller_rating_followers'; @endphp

{{translate('Set Seller Based Commission')}}

@if(get_setting('seller_commission_type') != 'seller_based' || get_setting('vendor_commission_activation') != 1)
@if(get_setting('seller_commission_type') != 'seller_based')

{{ translate('Commission Type is not Seller Based, set commission type ') }} {{ translate('Here') }}

@endif @if (get_setting('vendor_commission_activation') != 1)

{{ translate(' Seller Commission is not Activated, Active ') }} {{ translate('Here') }}

@endif
@endif
{{ translate('Sellers') }}
@foreach($shops as $key => $shop) @endforeach
# {{translate('Name')}} {{translate('Phone')}} {{translate('Email Address')}} {{ translate('Num. of Products') }} {{translate('Email Verification')}} {{ translate('Status') }} {{ translate('Commission') }} {{translate('Options')}}
{{ ($key+1) + ($shops->currentPage() - 1)*$shops->perPage() }}
Image
{{ $shop->name }}
{{$shop->user->phone}} {{$shop->user->email}} {{ $shop->user->products->count() }} @if($shop->user->email_verified_at != null) {{translate('Verified')}} @else {{translate('Unverified')}} @endif @if($shop->user->banned) {{ translate('Ban') }} @else {{ translate('Regular') }} @endif
%
{{ $shops->appends(request()->input())->links() }}
@endsection @section('modal') @endsection @section('script') @endsection