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

{{translate("All Shops")}}

{{translate($title)}}

@forelse($sellers as $seller)
{{$seller->sellerShop->name}}
@php echo show_ratings($seller->rating ? $seller->rating :0 ) @endphp
{{ $seller->product->count() }} {{translate('Products')}}
{{translate(' View Store')}} @if(auth()->check()) @if(in_array(auth()->user()->id,$seller->follow->pluck('following_id')->toArray())) {{translate('Following')}} @else {{translate('Follow')}} @endif @else {{translate('Follow')}} @endif
@empty
@include("frontend.partials.empty",['message' => 'No Data Found'])
@endforelse
{{$sellers->withQueryString()->links()}}
@endsection