@extends('salesman.layouts.app') @section('panel_content')

{{translate('All Sellers')}}

{{translate('Add Virtual Seller')}}
{{ translate('Sellers') }}
@foreach($shops as $key => $shop) @endforeach
{{translate('Name')}} {{translate('Phone')}} {{translate('Email Address')}} {{translate('Verification Info')}} {{translate('Approval')}} {{ translate('Num. of Products') }} {{ translate('Pending Balance') }} {{ translate('Wallet Money') }} {{ translate('Views') }} {{translate('Options')}}
@if($shop->user->banned == 1) @endif {{$shop->name}}@if($shop->user->is_virtual == 1) ({{translate('Virtual')}}) @endif {{$shop->user->phone}} {{$shop->user->email}} @if ($shop->verification_info != null) {{translate('Show')}} @endif {{ $shop->user->products->count() }} @if ($shop->admin_to_pay >= 0) {{ single_price($shop->admin_to_pay) }} @else {{ single_price(abs($shop->admin_to_pay)) }} ({{ translate('Due to Admin') }}) @endif {{single_price($shop->user->balance)}} {{translate('base num')}}:{{$shop->view_base_num}}
{{translate('inc num')}}:{{$shop->view_inc_num}}
{{ $shops->appends(request()->input())->links() }}
@endsection @section('modal') @endsection @section('script') @endsection