@extends('layouts.back-end.app') @section('title', \App\CPU\translate('Seller List')) @push('css_or_js') @endpush @section('content')

{{\App\CPU\translate('seller_list')}} {{ $sellers->total() }}

@foreach($sellers as $key=>$seller) @endforeach
{{\App\CPU\translate('SL')}} {{\App\CPU\translate('shop_name')}} {{\App\CPU\translate('seller_name')}} {{\App\CPU\translate('contact_info')}} {{\App\CPU\translate('status')}} {{\App\CPU\translate('total_products')}} {{\App\CPU\translate('total_orders')}} {{\App\CPU\translate('action')}}
{{$sellers->firstItem()+$key}} {{$seller->f_name}} {{$seller->l_name}} {{$seller->phone}} {!! $seller->status=='approved'?'':'' !!} {{$seller->product->count()}} {{$seller->orders->where('seller_is','seller')->where('order_type','default_type')->count()}}
{!! $sellers->links() !!}
@if(count($sellers)==0)
Image Description

{{\App\CPU\translate('No data to show')}}

@endif
@endsection @push('script') @endpush