@extends('backend.layouts.app') @section('content')

{{translate('All Sellers')}}

{{ translate('Sellers') }}
@foreach($sellers as $key => $seller) @if($seller->user != null && $seller->user->shop != null) @endif @endforeach
{{translate('Name')}} {{translate('Phone')}} {{translate('Email Address')}} {{translate('Verification Info')}} {{translate('Approval')}} {{ translate('Num. of Products') }} {{ translate('Due to seller') }} {{translate('Options')}}
@if($seller->user->banned == 1) @endif {{$seller->user->shop->name}} {{$seller->user->phone}} {{$seller->user->email}} @if ($seller->verification_info != null) {{translate('Show')}} @endif {{ \App\Product::where('user_id', $seller->user->id)->count() }} @if ($seller->admin_to_pay >= 0) {{ single_price($seller->admin_to_pay) }} @else {{ single_price(abs($seller->admin_to_pay)) }} (Due to Admin) @endif
{{ $sellers->appends(request()->input())->links() }}
@endsection @section('modal') @include('modals.delete_modal') @endsection @section('script') @endsection